├── .gitignore ├── LICENSE ├── Procfile ├── README.md ├── app.json ├── bot.py ├── helper ├── display_progress.py ├── gen_ss_help.py └── util.py ├── int.py ├── plugins ├── cb_data.py ├── forward.py ├── help_text.py ├── make_another_copy.py ├── multimedia.py └── sub_functions.py ├── requirements.txt ├── runtime.txt ├── sample_config.py └── translation.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4mallu/renameprobot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4mallu/renameprobot/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4mallu/renameprobot/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4mallu/renameprobot/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4mallu/renameprobot/HEAD/app.json -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4mallu/renameprobot/HEAD/bot.py -------------------------------------------------------------------------------- /helper/display_progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4mallu/renameprobot/HEAD/helper/display_progress.py -------------------------------------------------------------------------------- /helper/gen_ss_help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4mallu/renameprobot/HEAD/helper/gen_ss_help.py -------------------------------------------------------------------------------- /helper/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4mallu/renameprobot/HEAD/helper/util.py -------------------------------------------------------------------------------- /int.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4mallu/renameprobot/HEAD/int.py -------------------------------------------------------------------------------- /plugins/cb_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4mallu/renameprobot/HEAD/plugins/cb_data.py -------------------------------------------------------------------------------- /plugins/forward.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4mallu/renameprobot/HEAD/plugins/forward.py -------------------------------------------------------------------------------- /plugins/help_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4mallu/renameprobot/HEAD/plugins/help_text.py -------------------------------------------------------------------------------- /plugins/make_another_copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4mallu/renameprobot/HEAD/plugins/make_another_copy.py -------------------------------------------------------------------------------- /plugins/multimedia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4mallu/renameprobot/HEAD/plugins/multimedia.py -------------------------------------------------------------------------------- /plugins/sub_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4mallu/renameprobot/HEAD/plugins/sub_functions.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4mallu/renameprobot/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.8.7 -------------------------------------------------------------------------------- /sample_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4mallu/renameprobot/HEAD/sample_config.py -------------------------------------------------------------------------------- /translation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4mallu/renameprobot/HEAD/translation.py --------------------------------------------------------------------------------