├── .github └── FUNDING.yml ├── .qovery.yml ├── COPYING ├── Dockerfile ├── Procfile ├── README.md ├── app.json ├── bot.py ├── database ├── database.py └── db.py ├── helper_funcs ├── display_progress.py ├── help_Nekmo_ffmpeg.py └── help_uploadbot.py ├── heroku.yml ├── plugins ├── custom_thumbnail.py ├── help_text.py ├── rename_file.py └── video_converter.py ├── requirements.txt ├── runtime.txt ├── sample_config.py └── translation.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | 2 | 3 | custom: https://t.me/No_OnE_Kn0wS_Me 4 | -------------------------------------------------------------------------------- /.qovery.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-OnE-Kn0wS-Me/FileRenameBot/HEAD/.qovery.yml -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-OnE-Kn0wS-Me/FileRenameBot/HEAD/COPYING -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-OnE-Kn0wS-Me/FileRenameBot/HEAD/Dockerfile -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: python3 bot.py 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-OnE-Kn0wS-Me/FileRenameBot/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-OnE-Kn0wS-Me/FileRenameBot/HEAD/app.json -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-OnE-Kn0wS-Me/FileRenameBot/HEAD/bot.py -------------------------------------------------------------------------------- /database/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-OnE-Kn0wS-Me/FileRenameBot/HEAD/database/database.py -------------------------------------------------------------------------------- /database/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-OnE-Kn0wS-Me/FileRenameBot/HEAD/database/db.py -------------------------------------------------------------------------------- /helper_funcs/display_progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-OnE-Kn0wS-Me/FileRenameBot/HEAD/helper_funcs/display_progress.py -------------------------------------------------------------------------------- /helper_funcs/help_Nekmo_ffmpeg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-OnE-Kn0wS-Me/FileRenameBot/HEAD/helper_funcs/help_Nekmo_ffmpeg.py -------------------------------------------------------------------------------- /helper_funcs/help_uploadbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-OnE-Kn0wS-Me/FileRenameBot/HEAD/helper_funcs/help_uploadbot.py -------------------------------------------------------------------------------- /heroku.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-OnE-Kn0wS-Me/FileRenameBot/HEAD/heroku.yml -------------------------------------------------------------------------------- /plugins/custom_thumbnail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-OnE-Kn0wS-Me/FileRenameBot/HEAD/plugins/custom_thumbnail.py -------------------------------------------------------------------------------- /plugins/help_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-OnE-Kn0wS-Me/FileRenameBot/HEAD/plugins/help_text.py -------------------------------------------------------------------------------- /plugins/rename_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-OnE-Kn0wS-Me/FileRenameBot/HEAD/plugins/rename_file.py -------------------------------------------------------------------------------- /plugins/video_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-OnE-Kn0wS-Me/FileRenameBot/HEAD/plugins/video_converter.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-OnE-Kn0wS-Me/FileRenameBot/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.9.5 2 | -------------------------------------------------------------------------------- /sample_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-OnE-Kn0wS-Me/FileRenameBot/HEAD/sample_config.py -------------------------------------------------------------------------------- /translation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-OnE-Kn0wS-Me/FileRenameBot/HEAD/translation.py --------------------------------------------------------------------------------