Update core/wikipedia_processor.py
Browse files
core/wikipedia_processor.py
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
class WikipediaProcessor:
|
| 2 |
def __init__(self):
|
| 3 |
self.supported_formats = ['.txt', '.csv', '.json']
|
|
|
|
| 1 |
+
import os
|
| 2 |
+
import json
|
| 3 |
+
import pandas as pd
|
| 4 |
+
from typing import List
|
| 5 |
class WikipediaProcessor:
|
| 6 |
def __init__(self):
|
| 7 |
self.supported_formats = ['.txt', '.csv', '.json']
|