├── .gitignore ├── LICENSE ├── README ├── polyglot ├── __init__.py ├── config.py ├── convert.py ├── detect.py ├── identifier.py ├── models │ └── default └── utils.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.egg-info 2 | *.pyc 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saffsd/polyglot/HEAD/LICENSE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saffsd/polyglot/HEAD/README -------------------------------------------------------------------------------- /polyglot/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /polyglot/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saffsd/polyglot/HEAD/polyglot/config.py -------------------------------------------------------------------------------- /polyglot/convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saffsd/polyglot/HEAD/polyglot/convert.py -------------------------------------------------------------------------------- /polyglot/detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saffsd/polyglot/HEAD/polyglot/detect.py -------------------------------------------------------------------------------- /polyglot/identifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saffsd/polyglot/HEAD/polyglot/identifier.py -------------------------------------------------------------------------------- /polyglot/models/default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saffsd/polyglot/HEAD/polyglot/models/default -------------------------------------------------------------------------------- /polyglot/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saffsd/polyglot/HEAD/polyglot/utils.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saffsd/polyglot/HEAD/setup.py --------------------------------------------------------------------------------