├── CHANGES.txt ├── GUI_README.md ├── LICENSE.txt ├── MANIFEST.in ├── README.md ├── amazon.md ├── bin └── txtorg ├── examples ├── abstracts.csv ├── abstracts │ ├── 1.txt │ ├── 2.txt │ ├── 3.txt │ ├── 4.txt │ ├── 5.txt │ └── 6.txt └── abstracts_without_content.csv ├── rce.md ├── setup.py ├── textorganizer ├── #filters.py# ├── __init__.py ├── addmetadata.py ├── analyzer_chooser.py ├── analyzerutils.py ├── arabic.py ├── chinese.py ├── engine.py ├── engine_withlucene.py ├── filters.py ├── fromlucene.py ├── indexCSV.py ├── indexfiles.py ├── indexutils.py ├── nielsenstemmer.py ├── preprocessing.py ├── searchfiles.py ├── spellchecker.py ├── stemmingtools.py ├── stops.py └── training_text.txt ├── training_text.txt └── utilities └── check.py /CHANGES.txt: -------------------------------------------------------------------------------- 1 | v0.1, 4-1-13 -- Initial release 2 | -------------------------------------------------------------------------------- /GUI_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherLucas/txtorg/HEAD/GUI_README.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherLucas/txtorg/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherLucas/txtorg/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherLucas/txtorg/HEAD/README.md -------------------------------------------------------------------------------- /amazon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherLucas/txtorg/HEAD/amazon.md -------------------------------------------------------------------------------- /bin/txtorg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherLucas/txtorg/HEAD/bin/txtorg -------------------------------------------------------------------------------- /examples/abstracts.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherLucas/txtorg/HEAD/examples/abstracts.csv -------------------------------------------------------------------------------- /examples/abstracts/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherLucas/txtorg/HEAD/examples/abstracts/1.txt -------------------------------------------------------------------------------- /examples/abstracts/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherLucas/txtorg/HEAD/examples/abstracts/2.txt -------------------------------------------------------------------------------- /examples/abstracts/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherLucas/txtorg/HEAD/examples/abstracts/3.txt -------------------------------------------------------------------------------- /examples/abstracts/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherLucas/txtorg/HEAD/examples/abstracts/4.txt -------------------------------------------------------------------------------- /examples/abstracts/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherLucas/txtorg/HEAD/examples/abstracts/5.txt -------------------------------------------------------------------------------- /examples/abstracts/6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherLucas/txtorg/HEAD/examples/abstracts/6.txt -------------------------------------------------------------------------------- /examples/abstracts_without_content.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherLucas/txtorg/HEAD/examples/abstracts_without_content.csv -------------------------------------------------------------------------------- /rce.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherLucas/txtorg/HEAD/rce.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherLucas/txtorg/HEAD/setup.py -------------------------------------------------------------------------------- /textorganizer/#filters.py#: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherLucas/txtorg/HEAD/textorganizer/#filters.py# -------------------------------------------------------------------------------- /textorganizer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherLucas/txtorg/HEAD/textorganizer/__init__.py -------------------------------------------------------------------------------- /textorganizer/addmetadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherLucas/txtorg/HEAD/textorganizer/addmetadata.py -------------------------------------------------------------------------------- /textorganizer/analyzer_chooser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherLucas/txtorg/HEAD/textorganizer/analyzer_chooser.py -------------------------------------------------------------------------------- /textorganizer/analyzerutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherLucas/txtorg/HEAD/textorganizer/analyzerutils.py -------------------------------------------------------------------------------- /textorganizer/arabic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherLucas/txtorg/HEAD/textorganizer/arabic.py -------------------------------------------------------------------------------- /textorganizer/chinese.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherLucas/txtorg/HEAD/textorganizer/chinese.py -------------------------------------------------------------------------------- /textorganizer/engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherLucas/txtorg/HEAD/textorganizer/engine.py -------------------------------------------------------------------------------- /textorganizer/engine_withlucene.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherLucas/txtorg/HEAD/textorganizer/engine_withlucene.py -------------------------------------------------------------------------------- /textorganizer/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherLucas/txtorg/HEAD/textorganizer/filters.py -------------------------------------------------------------------------------- /textorganizer/fromlucene.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherLucas/txtorg/HEAD/textorganizer/fromlucene.py -------------------------------------------------------------------------------- /textorganizer/indexCSV.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherLucas/txtorg/HEAD/textorganizer/indexCSV.py -------------------------------------------------------------------------------- /textorganizer/indexfiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherLucas/txtorg/HEAD/textorganizer/indexfiles.py -------------------------------------------------------------------------------- /textorganizer/indexutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherLucas/txtorg/HEAD/textorganizer/indexutils.py -------------------------------------------------------------------------------- /textorganizer/nielsenstemmer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherLucas/txtorg/HEAD/textorganizer/nielsenstemmer.py -------------------------------------------------------------------------------- /textorganizer/preprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherLucas/txtorg/HEAD/textorganizer/preprocessing.py -------------------------------------------------------------------------------- /textorganizer/searchfiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherLucas/txtorg/HEAD/textorganizer/searchfiles.py -------------------------------------------------------------------------------- /textorganizer/spellchecker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherLucas/txtorg/HEAD/textorganizer/spellchecker.py -------------------------------------------------------------------------------- /textorganizer/stemmingtools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherLucas/txtorg/HEAD/textorganizer/stemmingtools.py -------------------------------------------------------------------------------- /textorganizer/stops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherLucas/txtorg/HEAD/textorganizer/stops.py -------------------------------------------------------------------------------- /textorganizer/training_text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherLucas/txtorg/HEAD/textorganizer/training_text.txt -------------------------------------------------------------------------------- /training_text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherLucas/txtorg/HEAD/training_text.txt -------------------------------------------------------------------------------- /utilities/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherLucas/txtorg/HEAD/utilities/check.py --------------------------------------------------------------------------------