├── .coveragerc ├── .gitignore ├── .hgignore ├── .hgtags ├── .travis.yml ├── CHANGES.rst ├── LICENSE ├── MANIFEST.in ├── README.rst ├── _prepare_dev_data.py ├── bench.ini ├── bench ├── __init__.py ├── speed.py └── utils.py ├── dawg_python ├── __init__.py ├── compat.py ├── dawgs.py ├── units.py └── wrapper.py ├── dev_data ├── large │ ├── bytes_dawg.dawg │ ├── dawg.dawg │ ├── int_dawg.dawg │ └── record_dawg.dawg ├── small │ ├── bytes.dawg │ ├── completion-empty.dawg │ ├── completion.dawg │ ├── int_completion_dawg.dawg │ ├── int_dawg.dawg │ ├── prediction-record.dawg │ ├── prediction.dawg │ └── record.dawg └── words100k.txt.zip ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── test_dawg.py ├── test_fuzzy.py ├── test_payload_dawg.py ├── test_prediction.py └── utils.py └── tox.ini /.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | branch = True 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytries/DAWG-Python/HEAD/.gitignore -------------------------------------------------------------------------------- /.hgignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytries/DAWG-Python/HEAD/.hgignore -------------------------------------------------------------------------------- /.hgtags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytries/DAWG-Python/HEAD/.hgtags -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytries/DAWG-Python/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGES.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytries/DAWG-Python/HEAD/CHANGES.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytries/DAWG-Python/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytries/DAWG-Python/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytries/DAWG-Python/HEAD/README.rst -------------------------------------------------------------------------------- /_prepare_dev_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytries/DAWG-Python/HEAD/_prepare_dev_data.py -------------------------------------------------------------------------------- /bench.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytries/DAWG-Python/HEAD/bench.ini -------------------------------------------------------------------------------- /bench/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytries/DAWG-Python/HEAD/bench/__init__.py -------------------------------------------------------------------------------- /bench/speed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytries/DAWG-Python/HEAD/bench/speed.py -------------------------------------------------------------------------------- /bench/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytries/DAWG-Python/HEAD/bench/utils.py -------------------------------------------------------------------------------- /dawg_python/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytries/DAWG-Python/HEAD/dawg_python/__init__.py -------------------------------------------------------------------------------- /dawg_python/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytries/DAWG-Python/HEAD/dawg_python/compat.py -------------------------------------------------------------------------------- /dawg_python/dawgs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytries/DAWG-Python/HEAD/dawg_python/dawgs.py -------------------------------------------------------------------------------- /dawg_python/units.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytries/DAWG-Python/HEAD/dawg_python/units.py -------------------------------------------------------------------------------- /dawg_python/wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytries/DAWG-Python/HEAD/dawg_python/wrapper.py -------------------------------------------------------------------------------- /dev_data/large/bytes_dawg.dawg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytries/DAWG-Python/HEAD/dev_data/large/bytes_dawg.dawg -------------------------------------------------------------------------------- /dev_data/large/dawg.dawg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytries/DAWG-Python/HEAD/dev_data/large/dawg.dawg -------------------------------------------------------------------------------- /dev_data/large/int_dawg.dawg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytries/DAWG-Python/HEAD/dev_data/large/int_dawg.dawg -------------------------------------------------------------------------------- /dev_data/large/record_dawg.dawg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytries/DAWG-Python/HEAD/dev_data/large/record_dawg.dawg -------------------------------------------------------------------------------- /dev_data/small/bytes.dawg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytries/DAWG-Python/HEAD/dev_data/small/bytes.dawg -------------------------------------------------------------------------------- /dev_data/small/completion-empty.dawg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytries/DAWG-Python/HEAD/dev_data/small/completion-empty.dawg -------------------------------------------------------------------------------- /dev_data/small/completion.dawg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytries/DAWG-Python/HEAD/dev_data/small/completion.dawg -------------------------------------------------------------------------------- /dev_data/small/int_completion_dawg.dawg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytries/DAWG-Python/HEAD/dev_data/small/int_completion_dawg.dawg -------------------------------------------------------------------------------- /dev_data/small/int_dawg.dawg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytries/DAWG-Python/HEAD/dev_data/small/int_dawg.dawg -------------------------------------------------------------------------------- /dev_data/small/prediction-record.dawg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytries/DAWG-Python/HEAD/dev_data/small/prediction-record.dawg -------------------------------------------------------------------------------- /dev_data/small/prediction.dawg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytries/DAWG-Python/HEAD/dev_data/small/prediction.dawg -------------------------------------------------------------------------------- /dev_data/small/record.dawg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytries/DAWG-Python/HEAD/dev_data/small/record.dawg -------------------------------------------------------------------------------- /dev_data/words100k.txt.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytries/DAWG-Python/HEAD/dev_data/words100k.txt.zip -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal=1 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytries/DAWG-Python/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytries/DAWG-Python/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/test_dawg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytries/DAWG-Python/HEAD/tests/test_dawg.py -------------------------------------------------------------------------------- /tests/test_fuzzy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytries/DAWG-Python/HEAD/tests/test_fuzzy.py -------------------------------------------------------------------------------- /tests/test_payload_dawg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytries/DAWG-Python/HEAD/tests/test_payload_dawg.py -------------------------------------------------------------------------------- /tests/test_prediction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytries/DAWG-Python/HEAD/tests/test_prediction.py -------------------------------------------------------------------------------- /tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytries/DAWG-Python/HEAD/tests/utils.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytries/DAWG-Python/HEAD/tox.ini --------------------------------------------------------------------------------