├── .gitignore ├── .pylintrc ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── README.md ├── setup.py ├── shamanld ├── __init__.py ├── data │ ├── __init__.py │ └── model.json.gz ├── shaman.py ├── tester.py └── trainer.py ├── test-requirements.txt └── tests └── test_app.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prev/shaman/HEAD/.gitignore -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prev/shaman/HEAD/.pylintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prev/shaman/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prev/shaman/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prev/shaman/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prev/shaman/HEAD/README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prev/shaman/HEAD/setup.py -------------------------------------------------------------------------------- /shamanld/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prev/shaman/HEAD/shamanld/__init__.py -------------------------------------------------------------------------------- /shamanld/data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shamanld/data/model.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prev/shaman/HEAD/shamanld/data/model.json.gz -------------------------------------------------------------------------------- /shamanld/shaman.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prev/shaman/HEAD/shamanld/shaman.py -------------------------------------------------------------------------------- /shamanld/tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prev/shaman/HEAD/shamanld/tester.py -------------------------------------------------------------------------------- /shamanld/trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prev/shaman/HEAD/shamanld/trainer.py -------------------------------------------------------------------------------- /test-requirements.txt: -------------------------------------------------------------------------------- 1 | pytest 2 | pylint 3 | -------------------------------------------------------------------------------- /tests/test_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prev/shaman/HEAD/tests/test_app.py --------------------------------------------------------------------------------