├── .github └── workflows │ └── main.yml ├── .gitignore ├── COPYING ├── Dockerfile ├── README.md ├── _config.yml ├── assets ├── step-1.png └── step-2.png ├── extract ├── heroku-deployment.md ├── heroku.yml ├── rclone.jpg ├── requirements.txt ├── runtime.txt ├── sample_config.env ├── setup.sh ├── start.sh ├── tobrot ├── UserDynaConfig.py ├── __init__.py ├── __main__.py ├── aria2 │ └── aria2.conf ├── helper_funcs │ ├── __init__.py │ ├── admin_check.py │ ├── bot_commands.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 │ ├── filters.py │ ├── gdtot_appdrive_bypass.py │ ├── help_Nekmo_ffmpeg.py │ ├── magnetic_link_regex.py │ ├── mediainfo.py │ ├── real_debrid_extractor.py │ ├── split_large_files.py │ ├── telegraph.py │ ├── upload_to_tg.py │ ├── utils.py │ ├── youtube_dl_button.py │ ├── youtube_dl_extractor.py │ └── ytplaylist.py └── plugins │ ├── call_back_button_handler.py │ ├── choose_rclone_config.py │ ├── custom_thumbnail.py │ ├── extra_fn.py │ ├── incoming_message_fn.py │ ├── new_join_fn.py │ ├── rclone_size.py │ ├── speedtest.py │ ├── status_message_fn.py │ └── torrent_search.py └── vps-deployment.md /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KangersHub/TorrentLeechX/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KangersHub/TorrentLeechX/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KangersHub/TorrentLeechX/HEAD/COPYING -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KangersHub/TorrentLeechX/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KangersHub/TorrentLeechX/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KangersHub/TorrentLeechX/HEAD/_config.yml -------------------------------------------------------------------------------- /assets/step-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KangersHub/TorrentLeechX/HEAD/assets/step-1.png -------------------------------------------------------------------------------- /assets/step-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KangersHub/TorrentLeechX/HEAD/assets/step-2.png -------------------------------------------------------------------------------- /extract: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KangersHub/TorrentLeechX/HEAD/extract -------------------------------------------------------------------------------- /heroku-deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KangersHub/TorrentLeechX/HEAD/heroku-deployment.md -------------------------------------------------------------------------------- /heroku.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KangersHub/TorrentLeechX/HEAD/heroku.yml -------------------------------------------------------------------------------- /rclone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KangersHub/TorrentLeechX/HEAD/rclone.jpg -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KangersHub/TorrentLeechX/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.9.5 2 | -------------------------------------------------------------------------------- /sample_config.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KangersHub/TorrentLeechX/HEAD/sample_config.env -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KangersHub/TorrentLeechX/HEAD/setup.sh -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KangersHub/TorrentLeechX/HEAD/start.sh -------------------------------------------------------------------------------- /tobrot/UserDynaConfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KangersHub/TorrentLeechX/HEAD/tobrot/UserDynaConfig.py -------------------------------------------------------------------------------- /tobrot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KangersHub/TorrentLeechX/HEAD/tobrot/__init__.py -------------------------------------------------------------------------------- /tobrot/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KangersHub/TorrentLeechX/HEAD/tobrot/__main__.py -------------------------------------------------------------------------------- /tobrot/aria2/aria2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KangersHub/TorrentLeechX/HEAD/tobrot/aria2/aria2.conf -------------------------------------------------------------------------------- /tobrot/helper_funcs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KangersHub/TorrentLeechX/HEAD/tobrot/helper_funcs/__init__.py -------------------------------------------------------------------------------- /tobrot/helper_funcs/admin_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KangersHub/TorrentLeechX/HEAD/tobrot/helper_funcs/admin_check.py -------------------------------------------------------------------------------- /tobrot/helper_funcs/bot_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KangersHub/TorrentLeechX/HEAD/tobrot/helper_funcs/bot_commands.py -------------------------------------------------------------------------------- /tobrot/helper_funcs/cloneHelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KangersHub/TorrentLeechX/HEAD/tobrot/helper_funcs/cloneHelper.py -------------------------------------------------------------------------------- /tobrot/helper_funcs/copy_similar_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KangersHub/TorrentLeechX/HEAD/tobrot/helper_funcs/copy_similar_file.py -------------------------------------------------------------------------------- /tobrot/helper_funcs/create_compressed_archive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KangersHub/TorrentLeechX/HEAD/tobrot/helper_funcs/create_compressed_archive.py -------------------------------------------------------------------------------- /tobrot/helper_funcs/direct_link_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KangersHub/TorrentLeechX/HEAD/tobrot/helper_funcs/direct_link_generator.py -------------------------------------------------------------------------------- /tobrot/helper_funcs/display_progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KangersHub/TorrentLeechX/HEAD/tobrot/helper_funcs/display_progress.py -------------------------------------------------------------------------------- /tobrot/helper_funcs/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KangersHub/TorrentLeechX/HEAD/tobrot/helper_funcs/download.py -------------------------------------------------------------------------------- /tobrot/helper_funcs/download_aria_p_n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KangersHub/TorrentLeechX/HEAD/tobrot/helper_funcs/download_aria_p_n.py -------------------------------------------------------------------------------- /tobrot/helper_funcs/download_from_link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KangersHub/TorrentLeechX/HEAD/tobrot/helper_funcs/download_from_link.py -------------------------------------------------------------------------------- /tobrot/helper_funcs/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KangersHub/TorrentLeechX/HEAD/tobrot/helper_funcs/exceptions.py -------------------------------------------------------------------------------- /tobrot/helper_funcs/extract_link_from_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KangersHub/TorrentLeechX/HEAD/tobrot/helper_funcs/extract_link_from_message.py -------------------------------------------------------------------------------- /tobrot/helper_funcs/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KangersHub/TorrentLeechX/HEAD/tobrot/helper_funcs/filters.py -------------------------------------------------------------------------------- /tobrot/helper_funcs/gdtot_appdrive_bypass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KangersHub/TorrentLeechX/HEAD/tobrot/helper_funcs/gdtot_appdrive_bypass.py -------------------------------------------------------------------------------- /tobrot/helper_funcs/help_Nekmo_ffmpeg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KangersHub/TorrentLeechX/HEAD/tobrot/helper_funcs/help_Nekmo_ffmpeg.py -------------------------------------------------------------------------------- /tobrot/helper_funcs/magnetic_link_regex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KangersHub/TorrentLeechX/HEAD/tobrot/helper_funcs/magnetic_link_regex.py -------------------------------------------------------------------------------- /tobrot/helper_funcs/mediainfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KangersHub/TorrentLeechX/HEAD/tobrot/helper_funcs/mediainfo.py -------------------------------------------------------------------------------- /tobrot/helper_funcs/real_debrid_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KangersHub/TorrentLeechX/HEAD/tobrot/helper_funcs/real_debrid_extractor.py -------------------------------------------------------------------------------- /tobrot/helper_funcs/split_large_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KangersHub/TorrentLeechX/HEAD/tobrot/helper_funcs/split_large_files.py -------------------------------------------------------------------------------- /tobrot/helper_funcs/telegraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KangersHub/TorrentLeechX/HEAD/tobrot/helper_funcs/telegraph.py -------------------------------------------------------------------------------- /tobrot/helper_funcs/upload_to_tg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KangersHub/TorrentLeechX/HEAD/tobrot/helper_funcs/upload_to_tg.py -------------------------------------------------------------------------------- /tobrot/helper_funcs/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KangersHub/TorrentLeechX/HEAD/tobrot/helper_funcs/utils.py -------------------------------------------------------------------------------- /tobrot/helper_funcs/youtube_dl_button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KangersHub/TorrentLeechX/HEAD/tobrot/helper_funcs/youtube_dl_button.py -------------------------------------------------------------------------------- /tobrot/helper_funcs/youtube_dl_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KangersHub/TorrentLeechX/HEAD/tobrot/helper_funcs/youtube_dl_extractor.py -------------------------------------------------------------------------------- /tobrot/helper_funcs/ytplaylist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KangersHub/TorrentLeechX/HEAD/tobrot/helper_funcs/ytplaylist.py -------------------------------------------------------------------------------- /tobrot/plugins/call_back_button_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KangersHub/TorrentLeechX/HEAD/tobrot/plugins/call_back_button_handler.py -------------------------------------------------------------------------------- /tobrot/plugins/choose_rclone_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KangersHub/TorrentLeechX/HEAD/tobrot/plugins/choose_rclone_config.py -------------------------------------------------------------------------------- /tobrot/plugins/custom_thumbnail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KangersHub/TorrentLeechX/HEAD/tobrot/plugins/custom_thumbnail.py -------------------------------------------------------------------------------- /tobrot/plugins/extra_fn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KangersHub/TorrentLeechX/HEAD/tobrot/plugins/extra_fn.py -------------------------------------------------------------------------------- /tobrot/plugins/incoming_message_fn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KangersHub/TorrentLeechX/HEAD/tobrot/plugins/incoming_message_fn.py -------------------------------------------------------------------------------- /tobrot/plugins/new_join_fn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KangersHub/TorrentLeechX/HEAD/tobrot/plugins/new_join_fn.py -------------------------------------------------------------------------------- /tobrot/plugins/rclone_size.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KangersHub/TorrentLeechX/HEAD/tobrot/plugins/rclone_size.py -------------------------------------------------------------------------------- /tobrot/plugins/speedtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KangersHub/TorrentLeechX/HEAD/tobrot/plugins/speedtest.py -------------------------------------------------------------------------------- /tobrot/plugins/status_message_fn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KangersHub/TorrentLeechX/HEAD/tobrot/plugins/status_message_fn.py -------------------------------------------------------------------------------- /tobrot/plugins/torrent_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KangersHub/TorrentLeechX/HEAD/tobrot/plugins/torrent_search.py -------------------------------------------------------------------------------- /vps-deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KangersHub/TorrentLeechX/HEAD/vps-deployment.md --------------------------------------------------------------------------------