├── .gitignore ├── LICENSE ├── Procfile ├── README.md ├── app.json ├── bot.py ├── helper ├── database.py └── list.py ├── plugins ├── broadcast.py ├── find_one.py ├── group.py ├── imagetotext.py ├── inline.py ├── set&unset.py ├── textospech.py └── translate.py ├── requirements.txt └── runtime.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lntechnical2/Google_Translater_V2/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lntechnical2/Google_Translater_V2/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: python3 bot.py 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lntechnical2/Google_Translater_V2/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lntechnical2/Google_Translater_V2/HEAD/app.json -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lntechnical2/Google_Translater_V2/HEAD/bot.py -------------------------------------------------------------------------------- /helper/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lntechnical2/Google_Translater_V2/HEAD/helper/database.py -------------------------------------------------------------------------------- /helper/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lntechnical2/Google_Translater_V2/HEAD/helper/list.py -------------------------------------------------------------------------------- /plugins/broadcast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lntechnical2/Google_Translater_V2/HEAD/plugins/broadcast.py -------------------------------------------------------------------------------- /plugins/find_one.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lntechnical2/Google_Translater_V2/HEAD/plugins/find_one.py -------------------------------------------------------------------------------- /plugins/group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lntechnical2/Google_Translater_V2/HEAD/plugins/group.py -------------------------------------------------------------------------------- /plugins/imagetotext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lntechnical2/Google_Translater_V2/HEAD/plugins/imagetotext.py -------------------------------------------------------------------------------- /plugins/inline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lntechnical2/Google_Translater_V2/HEAD/plugins/inline.py -------------------------------------------------------------------------------- /plugins/set&unset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lntechnical2/Google_Translater_V2/HEAD/plugins/set&unset.py -------------------------------------------------------------------------------- /plugins/textospech.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lntechnical2/Google_Translater_V2/HEAD/plugins/textospech.py -------------------------------------------------------------------------------- /plugins/translate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lntechnical2/Google_Translater_V2/HEAD/plugins/translate.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lntechnical2/Google_Translater_V2/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.9.7 2 | --------------------------------------------------------------------------------