This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from os.path import join, basename, dirname | |
| from nltk.util import clean_html | |
| from nltk.corpus.reader import PlaintextCorpusReader | |
| from os import system | |
| import re | |
| class EisParser(object): | |
| def __init__(self, path): | |
| self._name = basename(path) |