├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── py_trans ├── __init__.py ├── async_translator.py ├── data │ ├── README.md │ ├── languages.json │ └── version.json ├── errors.py ├── extras.py └── translator.py ├── requirements.txt └── setup.py /.gitignore: -------------------------------------------------------------------------------- 1 | tests/ 2 | dist/ 3 | py_trans.egg-info/ 4 | .venv -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itz-fork/py-trans/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include py_trans/data/*.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itz-fork/py-trans/HEAD/README.md -------------------------------------------------------------------------------- /py_trans/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itz-fork/py-trans/HEAD/py_trans/__init__.py -------------------------------------------------------------------------------- /py_trans/async_translator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itz-fork/py-trans/HEAD/py_trans/async_translator.py -------------------------------------------------------------------------------- /py_trans/data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itz-fork/py-trans/HEAD/py_trans/data/README.md -------------------------------------------------------------------------------- /py_trans/data/languages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itz-fork/py-trans/HEAD/py_trans/data/languages.json -------------------------------------------------------------------------------- /py_trans/data/version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itz-fork/py-trans/HEAD/py_trans/data/version.json -------------------------------------------------------------------------------- /py_trans/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itz-fork/py-trans/HEAD/py_trans/errors.py -------------------------------------------------------------------------------- /py_trans/extras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itz-fork/py-trans/HEAD/py_trans/extras.py -------------------------------------------------------------------------------- /py_trans/translator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itz-fork/py-trans/HEAD/py_trans/translator.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itz-fork/py-trans/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itz-fork/py-trans/HEAD/setup.py --------------------------------------------------------------------------------