gitextract_mzzg7lm1/ ├── .gitattributes ├── .gitmodules ├── .travis.yml ├── API-README.md ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── bld.bat ├── build.sh ├── conf.py ├── corpkit/ │ ├── __init__.py │ ├── annotate.py │ ├── blanknotebook.ipynb │ ├── build.py │ ├── completer.py │ ├── configurations.py │ ├── conll.py │ ├── constants.py │ ├── corpkit │ ├── corpkit.1 │ ├── corpus.py │ ├── cql.py │ ├── dictionaries/ │ │ ├── __init__.py │ │ ├── bnc.p │ │ ├── bnc.py │ │ ├── eng_verb_lexicon.p │ │ ├── process_types.py │ │ ├── queries.py │ │ ├── roles.py │ │ ├── stopwords.py │ │ ├── verblist.py │ │ ├── word_transforms.py │ │ └── wordlists.py │ ├── download/ │ │ ├── __init__.py │ │ └── corenlp.py │ ├── editor.py │ ├── env.py │ ├── gui.py │ ├── inflect.py │ ├── interpreter_tests.cki │ ├── interrogation.py │ ├── interrogator.py │ ├── keys.py │ ├── layouts.py │ ├── lazyprop.py │ ├── make.py │ ├── model.py │ ├── multiprocess.py │ ├── new_project │ ├── noseinstall.py │ ├── nosetests.py │ ├── other.py │ ├── parse │ ├── plotter.py │ ├── plugins.py │ ├── process.py │ ├── stanford-tregex.jar │ ├── stats.py │ ├── textprogressbar.py │ ├── tokenise.py │ └── tregex.sh ├── data/ │ ├── corpus-filelist.txt │ ├── test/ │ │ ├── first/ │ │ │ └── intro.txt │ │ └── second/ │ │ └── body.txt │ ├── test-plain-parsed/ │ │ ├── first/ │ │ │ └── intro.txt.conll │ │ └── second/ │ │ └── body.txt.conll │ ├── test-speak-parsed/ │ │ ├── first/ │ │ │ └── intro.txt.conll │ │ └── second/ │ │ └── body.txt.conll │ └── test-stripped/ │ ├── first/ │ │ └── intro.txt │ └── second/ │ └── body.txt ├── index.rst ├── make.bat ├── meta.yaml ├── requirements.txt ├── rst_docs/ │ ├── API/ │ │ ├── corpkit.building.rst │ │ ├── corpkit.concordancing.rst │ │ ├── corpkit.editing.rst │ │ ├── corpkit.interrogating.rst │ │ ├── corpkit.langmodel.rst │ │ ├── corpkit.managing.rst │ │ └── corpkit.visualising.rst │ ├── API-ref/ │ │ ├── corpkit.corpus.rst │ │ ├── corpkit.dictionaries.rst │ │ ├── corpkit.interrogation.rst │ │ └── corpkit.other.rst │ └── interpreter/ │ ├── corpkit.interpreter.annotating.rst │ ├── corpkit.interpreter.concordancing.rst │ ├── corpkit.interpreter.editing.rst │ ├── corpkit.interpreter.interrogating.rst │ ├── corpkit.interpreter.making.rst │ ├── corpkit.interpreter.managing.rst │ ├── corpkit.interpreter.overview.rst │ ├── corpkit.interpreter.setup.rst │ └── corpkit.interpreter.visualising.rst ├── setup.cfg ├── setup.py └── talks/ └── IDL_seminar.tex