├── .gitignore ├── COPYING ├── Procfile ├── README.md ├── app.json ├── bot.py ├── helper_funcs ├── chat_base.py ├── display_progress.py ├── help_Nekmo_ffmpeg.py └── help_uploadbot.py ├── plugins ├── FFMpegRoBot.py ├── _core.py ├── cb_buttons.py ├── convert_to_audio.py ├── convert_to_video.py ├── custom_thumbnail.py ├── dl_button.py ├── download_stickers.py ├── extract_streams.py ├── generate_screen_shot.py ├── get_external_link.py ├── help_text.py ├── rename_file.py ├── unzip.py ├── youtube_dl_button.py └── youtube_dl_echo.py ├── requirements.txt ├── runtime.txt ├── sample_config.py └── translation.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsoorajs/-ANYDLBOT/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsoorajs/-ANYDLBOT/HEAD/COPYING -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: python3 bot.py 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsoorajs/-ANYDLBOT/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsoorajs/-ANYDLBOT/HEAD/app.json -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsoorajs/-ANYDLBOT/HEAD/bot.py -------------------------------------------------------------------------------- /helper_funcs/chat_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsoorajs/-ANYDLBOT/HEAD/helper_funcs/chat_base.py -------------------------------------------------------------------------------- /helper_funcs/display_progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsoorajs/-ANYDLBOT/HEAD/helper_funcs/display_progress.py -------------------------------------------------------------------------------- /helper_funcs/help_Nekmo_ffmpeg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsoorajs/-ANYDLBOT/HEAD/helper_funcs/help_Nekmo_ffmpeg.py -------------------------------------------------------------------------------- /helper_funcs/help_uploadbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsoorajs/-ANYDLBOT/HEAD/helper_funcs/help_uploadbot.py -------------------------------------------------------------------------------- /plugins/FFMpegRoBot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsoorajs/-ANYDLBOT/HEAD/plugins/FFMpegRoBot.py -------------------------------------------------------------------------------- /plugins/_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsoorajs/-ANYDLBOT/HEAD/plugins/_core.py -------------------------------------------------------------------------------- /plugins/cb_buttons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsoorajs/-ANYDLBOT/HEAD/plugins/cb_buttons.py -------------------------------------------------------------------------------- /plugins/convert_to_audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsoorajs/-ANYDLBOT/HEAD/plugins/convert_to_audio.py -------------------------------------------------------------------------------- /plugins/convert_to_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsoorajs/-ANYDLBOT/HEAD/plugins/convert_to_video.py -------------------------------------------------------------------------------- /plugins/custom_thumbnail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsoorajs/-ANYDLBOT/HEAD/plugins/custom_thumbnail.py -------------------------------------------------------------------------------- /plugins/dl_button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsoorajs/-ANYDLBOT/HEAD/plugins/dl_button.py -------------------------------------------------------------------------------- /plugins/download_stickers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsoorajs/-ANYDLBOT/HEAD/plugins/download_stickers.py -------------------------------------------------------------------------------- /plugins/extract_streams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsoorajs/-ANYDLBOT/HEAD/plugins/extract_streams.py -------------------------------------------------------------------------------- /plugins/generate_screen_shot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsoorajs/-ANYDLBOT/HEAD/plugins/generate_screen_shot.py -------------------------------------------------------------------------------- /plugins/get_external_link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsoorajs/-ANYDLBOT/HEAD/plugins/get_external_link.py -------------------------------------------------------------------------------- /plugins/help_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsoorajs/-ANYDLBOT/HEAD/plugins/help_text.py -------------------------------------------------------------------------------- /plugins/rename_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsoorajs/-ANYDLBOT/HEAD/plugins/rename_file.py -------------------------------------------------------------------------------- /plugins/unzip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsoorajs/-ANYDLBOT/HEAD/plugins/unzip.py -------------------------------------------------------------------------------- /plugins/youtube_dl_button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsoorajs/-ANYDLBOT/HEAD/plugins/youtube_dl_button.py -------------------------------------------------------------------------------- /plugins/youtube_dl_echo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsoorajs/-ANYDLBOT/HEAD/plugins/youtube_dl_echo.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsoorajs/-ANYDLBOT/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.7.3 2 | -------------------------------------------------------------------------------- /sample_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsoorajs/-ANYDLBOT/HEAD/sample_config.py -------------------------------------------------------------------------------- /translation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsoorajs/-ANYDLBOT/HEAD/translation.py --------------------------------------------------------------------------------