├── .gitignore ├── LICENSE ├── README.md ├── requirements.txt └── rgt.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skulltech/repeated-google-translate/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skulltech/repeated-google-translate/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skulltech/repeated-google-translate/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | googletrans 2 | -------------------------------------------------------------------------------- /rgt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skulltech/repeated-google-translate/HEAD/rgt.py --------------------------------------------------------------------------------