├── .gitignore ├── .replit ├── Procfile ├── README.md ├── app.json ├── bot ├── __init__.py ├── __main__.py ├── client.py ├── core │ ├── db │ │ ├── add.py │ │ └── database.py │ ├── display.py │ ├── ffmpeg.py │ ├── file_info.py │ ├── fixes.py │ ├── handlers │ │ ├── big_rename.py │ │ ├── broadcast.py │ │ ├── not_big.py │ │ ├── settings.py │ │ └── time_gap.py │ ├── new │ │ ├── __init__.py │ │ ├── custom_uploader.py │ │ ├── normal_rename.py │ │ ├── send_flooded_message.py │ │ ├── upload_document.py │ │ └── upload_video.py │ └── utils │ │ ├── audio_info.py │ │ ├── executor.py │ │ ├── rm.py │ │ ├── thumbnail_info.py │ │ └── video_info.py └── plugins │ ├── __init__.py │ ├── admin.py │ ├── callbacks.py │ ├── on_media.py │ ├── ping.py │ ├── rename.py │ ├── thumbnail.py │ └── video_info.py ├── configs.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | .idea -------------------------------------------------------------------------------- /.replit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbirHasan2005/Rename-Bot/HEAD/.replit -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: python3 -m bot -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbirHasan2005/Rename-Bot/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbirHasan2005/Rename-Bot/HEAD/app.json -------------------------------------------------------------------------------- /bot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbirHasan2005/Rename-Bot/HEAD/bot/__init__.py -------------------------------------------------------------------------------- /bot/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbirHasan2005/Rename-Bot/HEAD/bot/__main__.py -------------------------------------------------------------------------------- /bot/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbirHasan2005/Rename-Bot/HEAD/bot/client.py -------------------------------------------------------------------------------- /bot/core/db/add.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbirHasan2005/Rename-Bot/HEAD/bot/core/db/add.py -------------------------------------------------------------------------------- /bot/core/db/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbirHasan2005/Rename-Bot/HEAD/bot/core/db/database.py -------------------------------------------------------------------------------- /bot/core/display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbirHasan2005/Rename-Bot/HEAD/bot/core/display.py -------------------------------------------------------------------------------- /bot/core/ffmpeg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbirHasan2005/Rename-Bot/HEAD/bot/core/ffmpeg.py -------------------------------------------------------------------------------- /bot/core/file_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbirHasan2005/Rename-Bot/HEAD/bot/core/file_info.py -------------------------------------------------------------------------------- /bot/core/fixes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbirHasan2005/Rename-Bot/HEAD/bot/core/fixes.py -------------------------------------------------------------------------------- /bot/core/handlers/big_rename.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbirHasan2005/Rename-Bot/HEAD/bot/core/handlers/big_rename.py -------------------------------------------------------------------------------- /bot/core/handlers/broadcast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbirHasan2005/Rename-Bot/HEAD/bot/core/handlers/broadcast.py -------------------------------------------------------------------------------- /bot/core/handlers/not_big.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbirHasan2005/Rename-Bot/HEAD/bot/core/handlers/not_big.py -------------------------------------------------------------------------------- /bot/core/handlers/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbirHasan2005/Rename-Bot/HEAD/bot/core/handlers/settings.py -------------------------------------------------------------------------------- /bot/core/handlers/time_gap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbirHasan2005/Rename-Bot/HEAD/bot/core/handlers/time_gap.py -------------------------------------------------------------------------------- /bot/core/new/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbirHasan2005/Rename-Bot/HEAD/bot/core/new/__init__.py -------------------------------------------------------------------------------- /bot/core/new/custom_uploader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbirHasan2005/Rename-Bot/HEAD/bot/core/new/custom_uploader.py -------------------------------------------------------------------------------- /bot/core/new/normal_rename.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbirHasan2005/Rename-Bot/HEAD/bot/core/new/normal_rename.py -------------------------------------------------------------------------------- /bot/core/new/send_flooded_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbirHasan2005/Rename-Bot/HEAD/bot/core/new/send_flooded_message.py -------------------------------------------------------------------------------- /bot/core/new/upload_document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbirHasan2005/Rename-Bot/HEAD/bot/core/new/upload_document.py -------------------------------------------------------------------------------- /bot/core/new/upload_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbirHasan2005/Rename-Bot/HEAD/bot/core/new/upload_video.py -------------------------------------------------------------------------------- /bot/core/utils/audio_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbirHasan2005/Rename-Bot/HEAD/bot/core/utils/audio_info.py -------------------------------------------------------------------------------- /bot/core/utils/executor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbirHasan2005/Rename-Bot/HEAD/bot/core/utils/executor.py -------------------------------------------------------------------------------- /bot/core/utils/rm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbirHasan2005/Rename-Bot/HEAD/bot/core/utils/rm.py -------------------------------------------------------------------------------- /bot/core/utils/thumbnail_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbirHasan2005/Rename-Bot/HEAD/bot/core/utils/thumbnail_info.py -------------------------------------------------------------------------------- /bot/core/utils/video_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbirHasan2005/Rename-Bot/HEAD/bot/core/utils/video_info.py -------------------------------------------------------------------------------- /bot/plugins/__init__.py: -------------------------------------------------------------------------------- 1 | # (c) @AbirHasan2005 2 | -------------------------------------------------------------------------------- /bot/plugins/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbirHasan2005/Rename-Bot/HEAD/bot/plugins/admin.py -------------------------------------------------------------------------------- /bot/plugins/callbacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbirHasan2005/Rename-Bot/HEAD/bot/plugins/callbacks.py -------------------------------------------------------------------------------- /bot/plugins/on_media.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbirHasan2005/Rename-Bot/HEAD/bot/plugins/on_media.py -------------------------------------------------------------------------------- /bot/plugins/ping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbirHasan2005/Rename-Bot/HEAD/bot/plugins/ping.py -------------------------------------------------------------------------------- /bot/plugins/rename.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbirHasan2005/Rename-Bot/HEAD/bot/plugins/rename.py -------------------------------------------------------------------------------- /bot/plugins/thumbnail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbirHasan2005/Rename-Bot/HEAD/bot/plugins/thumbnail.py -------------------------------------------------------------------------------- /bot/plugins/video_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbirHasan2005/Rename-Bot/HEAD/bot/plugins/video_info.py -------------------------------------------------------------------------------- /configs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbirHasan2005/Rename-Bot/HEAD/configs.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbirHasan2005/Rename-Bot/HEAD/requirements.txt --------------------------------------------------------------------------------