├── .gitignore ├── .travis.yml ├── Makefile ├── README.md ├── docs.ipynb ├── graph.png ├── pullenti_wrapper ├── __init__.py ├── langs.py ├── preprocess.py ├── processor.py ├── referent.py ├── result.py └── utils.py ├── requirements.txt ├── requirements ├── dev.txt └── main.txt ├── setup.cfg └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pullenti/pullenti-wrapper/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pullenti/pullenti-wrapper/HEAD/.travis.yml -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pullenti/pullenti-wrapper/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pullenti/pullenti-wrapper/HEAD/README.md -------------------------------------------------------------------------------- /docs.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pullenti/pullenti-wrapper/HEAD/docs.ipynb -------------------------------------------------------------------------------- /graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pullenti/pullenti-wrapper/HEAD/graph.png -------------------------------------------------------------------------------- /pullenti_wrapper/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pullenti_wrapper/langs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pullenti/pullenti-wrapper/HEAD/pullenti_wrapper/langs.py -------------------------------------------------------------------------------- /pullenti_wrapper/preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pullenti/pullenti-wrapper/HEAD/pullenti_wrapper/preprocess.py -------------------------------------------------------------------------------- /pullenti_wrapper/processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pullenti/pullenti-wrapper/HEAD/pullenti_wrapper/processor.py -------------------------------------------------------------------------------- /pullenti_wrapper/referent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pullenti/pullenti-wrapper/HEAD/pullenti_wrapper/referent.py -------------------------------------------------------------------------------- /pullenti_wrapper/result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pullenti/pullenti-wrapper/HEAD/pullenti_wrapper/result.py -------------------------------------------------------------------------------- /pullenti_wrapper/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pullenti/pullenti-wrapper/HEAD/pullenti_wrapper/utils.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pullenti/pullenti-wrapper/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements/dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pullenti/pullenti-wrapper/HEAD/requirements/dev.txt -------------------------------------------------------------------------------- /requirements/main.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pullenti/pullenti-wrapper/HEAD/requirements/main.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pullenti/pullenti-wrapper/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pullenti/pullenti-wrapper/HEAD/setup.py --------------------------------------------------------------------------------