SYMBOL INDEX (21 symbols across 5 files) FILE: autocorrect/__init__.py function spell (line 19) | def spell(word): FILE: autocorrect/nlp_parser.py function parse (line 18) | def parse(lang_sample): FILE: autocorrect/utils.py function words_from_archive (line 24) | def words_from_archive(filename, include_dups=False, map_case=False): function concat (line 38) | def concat(*args): class Zero (line 45) | class Zero(dict): method __getitem__ (line 48) | def __getitem__(self, key): method get (line 51) | def get(self, key): FILE: autocorrect/word.py class Word (line 24) | class Word(object): method __init__ (line 27) | def __init__(self, word): method _deletes (line 42) | def _deletes(self): method _transposes (line 47) | def _transposes(self): method _replaces (line 52) | def _replaces(self): method _inserts (line 58) | def _inserts(self): method typos (line 64) | def typos(self): method double_typos (line 69) | def double_typos(self): function common (line 75) | def common(words): function exact (line 79) | def exact(words): function known (line 83) | def known(words): function known_as_lower (line 87) | def known_as_lower(words): function get_case (line 91) | def get_case(word, correction): FILE: unit_tests/test.py function spelltest (line 14) | def spelltest(tests, verbose=False):