├── .gitignore ├── COPYING ├── Dockerfile ├── README.md ├── _config.yml ├── app.json ├── extract ├── heroku.yml ├── rclone.jpg ├── requirements.txt ├── runtime.txt ├── sample_config.env ├── start.sh └── tobrot ├── UserDynaConfig.py ├── __init__.py ├── __main__.py ├── helper_funcs ├── admin_check.py ├── cloneHelper.py ├── copy_similar_file.py ├── create_compressed_archive.py ├── direct_link_generator.py ├── display_progress.py ├── download.py ├── download_aria_p_n.py ├── download_from_link.py ├── exceptions.py ├── extract_link_from_message.py ├── help_Nekmo_ffmpeg.py ├── magnetic_link_regex.py ├── real_debrid_extractor.py ├── split_large_files.py ├── upload_to_tg.py ├── youtube_dl_button.py ├── youtube_dl_extractor.py └── ytplaylist.py └── plugins ├── call_back_button_handler.py ├── choose_rclone_config.py ├── custom_thumbnail.py ├── incoming_message_fn.py ├── new_join_fn.py ├── rclone_size.py └── status_message_fn.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarisBotz/LEECH-TELEGRAM-BOT/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarisBotz/LEECH-TELEGRAM-BOT/HEAD/COPYING -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarisBotz/LEECH-TELEGRAM-BOT/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarisBotz/LEECH-TELEGRAM-BOT/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarisBotz/LEECH-TELEGRAM-BOT/HEAD/_config.yml -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarisBotz/LEECH-TELEGRAM-BOT/HEAD/app.json -------------------------------------------------------------------------------- /extract: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarisBotz/LEECH-TELEGRAM-BOT/HEAD/extract -------------------------------------------------------------------------------- /heroku.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarisBotz/LEECH-TELEGRAM-BOT/HEAD/heroku.yml -------------------------------------------------------------------------------- /rclone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarisBotz/LEECH-TELEGRAM-BOT/HEAD/rclone.jpg -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarisBotz/LEECH-TELEGRAM-BOT/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.9.2 2 | -------------------------------------------------------------------------------- /sample_config.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarisBotz/LEECH-TELEGRAM-BOT/HEAD/sample_config.env -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarisBotz/LEECH-TELEGRAM-BOT/HEAD/start.sh -------------------------------------------------------------------------------- /tobrot/UserDynaConfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarisBotz/LEECH-TELEGRAM-BOT/HEAD/tobrot/UserDynaConfig.py -------------------------------------------------------------------------------- /tobrot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarisBotz/LEECH-TELEGRAM-BOT/HEAD/tobrot/__init__.py -------------------------------------------------------------------------------- /tobrot/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarisBotz/LEECH-TELEGRAM-BOT/HEAD/tobrot/__main__.py -------------------------------------------------------------------------------- /tobrot/helper_funcs/admin_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarisBotz/LEECH-TELEGRAM-BOT/HEAD/tobrot/helper_funcs/admin_check.py -------------------------------------------------------------------------------- /tobrot/helper_funcs/cloneHelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarisBotz/LEECH-TELEGRAM-BOT/HEAD/tobrot/helper_funcs/cloneHelper.py -------------------------------------------------------------------------------- /tobrot/helper_funcs/copy_similar_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarisBotz/LEECH-TELEGRAM-BOT/HEAD/tobrot/helper_funcs/copy_similar_file.py -------------------------------------------------------------------------------- /tobrot/helper_funcs/create_compressed_archive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarisBotz/LEECH-TELEGRAM-BOT/HEAD/tobrot/helper_funcs/create_compressed_archive.py -------------------------------------------------------------------------------- /tobrot/helper_funcs/direct_link_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarisBotz/LEECH-TELEGRAM-BOT/HEAD/tobrot/helper_funcs/direct_link_generator.py -------------------------------------------------------------------------------- /tobrot/helper_funcs/display_progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarisBotz/LEECH-TELEGRAM-BOT/HEAD/tobrot/helper_funcs/display_progress.py -------------------------------------------------------------------------------- /tobrot/helper_funcs/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarisBotz/LEECH-TELEGRAM-BOT/HEAD/tobrot/helper_funcs/download.py -------------------------------------------------------------------------------- /tobrot/helper_funcs/download_aria_p_n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarisBotz/LEECH-TELEGRAM-BOT/HEAD/tobrot/helper_funcs/download_aria_p_n.py -------------------------------------------------------------------------------- /tobrot/helper_funcs/download_from_link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarisBotz/LEECH-TELEGRAM-BOT/HEAD/tobrot/helper_funcs/download_from_link.py -------------------------------------------------------------------------------- /tobrot/helper_funcs/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarisBotz/LEECH-TELEGRAM-BOT/HEAD/tobrot/helper_funcs/exceptions.py -------------------------------------------------------------------------------- /tobrot/helper_funcs/extract_link_from_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarisBotz/LEECH-TELEGRAM-BOT/HEAD/tobrot/helper_funcs/extract_link_from_message.py -------------------------------------------------------------------------------- /tobrot/helper_funcs/help_Nekmo_ffmpeg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarisBotz/LEECH-TELEGRAM-BOT/HEAD/tobrot/helper_funcs/help_Nekmo_ffmpeg.py -------------------------------------------------------------------------------- /tobrot/helper_funcs/magnetic_link_regex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarisBotz/LEECH-TELEGRAM-BOT/HEAD/tobrot/helper_funcs/magnetic_link_regex.py -------------------------------------------------------------------------------- /tobrot/helper_funcs/real_debrid_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarisBotz/LEECH-TELEGRAM-BOT/HEAD/tobrot/helper_funcs/real_debrid_extractor.py -------------------------------------------------------------------------------- /tobrot/helper_funcs/split_large_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarisBotz/LEECH-TELEGRAM-BOT/HEAD/tobrot/helper_funcs/split_large_files.py -------------------------------------------------------------------------------- /tobrot/helper_funcs/upload_to_tg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarisBotz/LEECH-TELEGRAM-BOT/HEAD/tobrot/helper_funcs/upload_to_tg.py -------------------------------------------------------------------------------- /tobrot/helper_funcs/youtube_dl_button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarisBotz/LEECH-TELEGRAM-BOT/HEAD/tobrot/helper_funcs/youtube_dl_button.py -------------------------------------------------------------------------------- /tobrot/helper_funcs/youtube_dl_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarisBotz/LEECH-TELEGRAM-BOT/HEAD/tobrot/helper_funcs/youtube_dl_extractor.py -------------------------------------------------------------------------------- /tobrot/helper_funcs/ytplaylist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarisBotz/LEECH-TELEGRAM-BOT/HEAD/tobrot/helper_funcs/ytplaylist.py -------------------------------------------------------------------------------- /tobrot/plugins/call_back_button_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarisBotz/LEECH-TELEGRAM-BOT/HEAD/tobrot/plugins/call_back_button_handler.py -------------------------------------------------------------------------------- /tobrot/plugins/choose_rclone_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarisBotz/LEECH-TELEGRAM-BOT/HEAD/tobrot/plugins/choose_rclone_config.py -------------------------------------------------------------------------------- /tobrot/plugins/custom_thumbnail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarisBotz/LEECH-TELEGRAM-BOT/HEAD/tobrot/plugins/custom_thumbnail.py -------------------------------------------------------------------------------- /tobrot/plugins/incoming_message_fn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarisBotz/LEECH-TELEGRAM-BOT/HEAD/tobrot/plugins/incoming_message_fn.py -------------------------------------------------------------------------------- /tobrot/plugins/new_join_fn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarisBotz/LEECH-TELEGRAM-BOT/HEAD/tobrot/plugins/new_join_fn.py -------------------------------------------------------------------------------- /tobrot/plugins/rclone_size.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarisBotz/LEECH-TELEGRAM-BOT/HEAD/tobrot/plugins/rclone_size.py -------------------------------------------------------------------------------- /tobrot/plugins/status_message_fn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarisBotz/LEECH-TELEGRAM-BOT/HEAD/tobrot/plugins/status_message_fn.py --------------------------------------------------------------------------------