├── .coveragerc ├── .travis.yml ├── CHANGELOG ├── LICENSE ├── MANIFEST.in ├── README.rst ├── __init__.py ├── setup.cfg ├── setup.py └── test.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlabs/Microsoft-Translator-Python-API/HEAD/.coveragerc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlabs/Microsoft-Translator-Python-API/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlabs/Microsoft-Translator-Python-API/HEAD/CHANGELOG -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlabs/Microsoft-Translator-Python-API/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlabs/Microsoft-Translator-Python-API/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlabs/Microsoft-Translator-Python-API/HEAD/README.rst -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlabs/Microsoft-Translator-Python-API/HEAD/__init__.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlabs/Microsoft-Translator-Python-API/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlabs/Microsoft-Translator-Python-API/HEAD/setup.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlabs/Microsoft-Translator-Python-API/HEAD/test.py --------------------------------------------------------------------------------