├── .gitignore ├── LICENSE ├── README.md ├── app.py ├── images └── hello_world.png └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | venv -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quint-t/Text-Translator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quint-t/Text-Translator/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quint-t/Text-Translator/HEAD/app.py -------------------------------------------------------------------------------- /images/hello_world.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quint-t/Text-Translator/HEAD/images/hello_world.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quint-t/Text-Translator/HEAD/requirements.txt --------------------------------------------------------------------------------