├── .github └── FUNDING.yml ├── .gitignore ├── .gitmodules ├── Dockerfile ├── LICENSE ├── README.md ├── add_to_team_drive.py ├── app.json ├── aria.bat ├── aria.sh ├── bot ├── __init__.py ├── __main__.py ├── helper │ ├── __init__.py │ ├── ext_utils │ │ ├── __init__.py │ │ ├── bot_utils.py │ │ ├── exceptions.py │ │ └── fs_utils.py │ ├── mirror_utils │ │ ├── __init__.py │ │ ├── download_utils │ │ │ ├── __init__.py │ │ │ ├── aria2_download.py │ │ │ ├── direct_link_generator.py │ │ │ ├── direct_link_generator_license.md │ │ │ ├── download_helper.py │ │ │ ├── telegram_downloader.py │ │ │ └── youtube_dl_download_helper.py │ │ ├── status_utils │ │ │ ├── __init__.py │ │ │ ├── aria_download_status.py │ │ │ ├── listeners.py │ │ │ ├── status.py │ │ │ ├── tar_status.py │ │ │ ├── telegram_download_status.py │ │ │ ├── upload_status.py │ │ │ └── youtube_dl_download_status.py │ │ └── upload_utils │ │ │ ├── __init__.py │ │ │ └── gdriveTools.py │ └── telegram_helper │ │ ├── __init__.py │ │ ├── bot_commands.py │ │ ├── filters.py │ │ └── message_utils.py └── modules │ ├── __init__.py │ ├── authorize.py │ ├── cancel_mirror.py │ ├── clone.py │ ├── list.py │ ├── mirror.py │ ├── mirror_status.py │ └── watch.py ├── captain-definition ├── files ├── paypal.png └── upi.png ├── gen_sa_accounts.py ├── generate_drive_token.py ├── generate_string_session.py ├── heroku.yml ├── netrc ├── requirements.txt └── start.sh /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/begulatuk/Torrent-Mirror-Bot/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/begulatuk/Torrent-Mirror-Bot/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/begulatuk/Torrent-Mirror-Bot/HEAD/.gitmodules -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/begulatuk/Torrent-Mirror-Bot/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/begulatuk/Torrent-Mirror-Bot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/begulatuk/Torrent-Mirror-Bot/HEAD/README.md -------------------------------------------------------------------------------- /add_to_team_drive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/begulatuk/Torrent-Mirror-Bot/HEAD/add_to_team_drive.py -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/begulatuk/Torrent-Mirror-Bot/HEAD/app.json -------------------------------------------------------------------------------- /aria.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/begulatuk/Torrent-Mirror-Bot/HEAD/aria.bat -------------------------------------------------------------------------------- /aria.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/begulatuk/Torrent-Mirror-Bot/HEAD/aria.sh -------------------------------------------------------------------------------- /bot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/begulatuk/Torrent-Mirror-Bot/HEAD/bot/__init__.py -------------------------------------------------------------------------------- /bot/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/begulatuk/Torrent-Mirror-Bot/HEAD/bot/__main__.py -------------------------------------------------------------------------------- /bot/helper/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bot/helper/ext_utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bot/helper/ext_utils/bot_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/begulatuk/Torrent-Mirror-Bot/HEAD/bot/helper/ext_utils/bot_utils.py -------------------------------------------------------------------------------- /bot/helper/ext_utils/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/begulatuk/Torrent-Mirror-Bot/HEAD/bot/helper/ext_utils/exceptions.py -------------------------------------------------------------------------------- /bot/helper/ext_utils/fs_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/begulatuk/Torrent-Mirror-Bot/HEAD/bot/helper/ext_utils/fs_utils.py -------------------------------------------------------------------------------- /bot/helper/mirror_utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bot/helper/mirror_utils/download_utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bot/helper/mirror_utils/download_utils/aria2_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/begulatuk/Torrent-Mirror-Bot/HEAD/bot/helper/mirror_utils/download_utils/aria2_download.py -------------------------------------------------------------------------------- /bot/helper/mirror_utils/download_utils/direct_link_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/begulatuk/Torrent-Mirror-Bot/HEAD/bot/helper/mirror_utils/download_utils/direct_link_generator.py -------------------------------------------------------------------------------- /bot/helper/mirror_utils/download_utils/direct_link_generator_license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/begulatuk/Torrent-Mirror-Bot/HEAD/bot/helper/mirror_utils/download_utils/direct_link_generator_license.md -------------------------------------------------------------------------------- /bot/helper/mirror_utils/download_utils/download_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/begulatuk/Torrent-Mirror-Bot/HEAD/bot/helper/mirror_utils/download_utils/download_helper.py -------------------------------------------------------------------------------- /bot/helper/mirror_utils/download_utils/telegram_downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/begulatuk/Torrent-Mirror-Bot/HEAD/bot/helper/mirror_utils/download_utils/telegram_downloader.py -------------------------------------------------------------------------------- /bot/helper/mirror_utils/download_utils/youtube_dl_download_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/begulatuk/Torrent-Mirror-Bot/HEAD/bot/helper/mirror_utils/download_utils/youtube_dl_download_helper.py -------------------------------------------------------------------------------- /bot/helper/mirror_utils/status_utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bot/helper/mirror_utils/status_utils/aria_download_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/begulatuk/Torrent-Mirror-Bot/HEAD/bot/helper/mirror_utils/status_utils/aria_download_status.py -------------------------------------------------------------------------------- /bot/helper/mirror_utils/status_utils/listeners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/begulatuk/Torrent-Mirror-Bot/HEAD/bot/helper/mirror_utils/status_utils/listeners.py -------------------------------------------------------------------------------- /bot/helper/mirror_utils/status_utils/status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/begulatuk/Torrent-Mirror-Bot/HEAD/bot/helper/mirror_utils/status_utils/status.py -------------------------------------------------------------------------------- /bot/helper/mirror_utils/status_utils/tar_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/begulatuk/Torrent-Mirror-Bot/HEAD/bot/helper/mirror_utils/status_utils/tar_status.py -------------------------------------------------------------------------------- /bot/helper/mirror_utils/status_utils/telegram_download_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/begulatuk/Torrent-Mirror-Bot/HEAD/bot/helper/mirror_utils/status_utils/telegram_download_status.py -------------------------------------------------------------------------------- /bot/helper/mirror_utils/status_utils/upload_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/begulatuk/Torrent-Mirror-Bot/HEAD/bot/helper/mirror_utils/status_utils/upload_status.py -------------------------------------------------------------------------------- /bot/helper/mirror_utils/status_utils/youtube_dl_download_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/begulatuk/Torrent-Mirror-Bot/HEAD/bot/helper/mirror_utils/status_utils/youtube_dl_download_status.py -------------------------------------------------------------------------------- /bot/helper/mirror_utils/upload_utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bot/helper/mirror_utils/upload_utils/gdriveTools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/begulatuk/Torrent-Mirror-Bot/HEAD/bot/helper/mirror_utils/upload_utils/gdriveTools.py -------------------------------------------------------------------------------- /bot/helper/telegram_helper/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bot/helper/telegram_helper/bot_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/begulatuk/Torrent-Mirror-Bot/HEAD/bot/helper/telegram_helper/bot_commands.py -------------------------------------------------------------------------------- /bot/helper/telegram_helper/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/begulatuk/Torrent-Mirror-Bot/HEAD/bot/helper/telegram_helper/filters.py -------------------------------------------------------------------------------- /bot/helper/telegram_helper/message_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/begulatuk/Torrent-Mirror-Bot/HEAD/bot/helper/telegram_helper/message_utils.py -------------------------------------------------------------------------------- /bot/modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bot/modules/authorize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/begulatuk/Torrent-Mirror-Bot/HEAD/bot/modules/authorize.py -------------------------------------------------------------------------------- /bot/modules/cancel_mirror.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/begulatuk/Torrent-Mirror-Bot/HEAD/bot/modules/cancel_mirror.py -------------------------------------------------------------------------------- /bot/modules/clone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/begulatuk/Torrent-Mirror-Bot/HEAD/bot/modules/clone.py -------------------------------------------------------------------------------- /bot/modules/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/begulatuk/Torrent-Mirror-Bot/HEAD/bot/modules/list.py -------------------------------------------------------------------------------- /bot/modules/mirror.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/begulatuk/Torrent-Mirror-Bot/HEAD/bot/modules/mirror.py -------------------------------------------------------------------------------- /bot/modules/mirror_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/begulatuk/Torrent-Mirror-Bot/HEAD/bot/modules/mirror_status.py -------------------------------------------------------------------------------- /bot/modules/watch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/begulatuk/Torrent-Mirror-Bot/HEAD/bot/modules/watch.py -------------------------------------------------------------------------------- /captain-definition: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/begulatuk/Torrent-Mirror-Bot/HEAD/captain-definition -------------------------------------------------------------------------------- /files/paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/begulatuk/Torrent-Mirror-Bot/HEAD/files/paypal.png -------------------------------------------------------------------------------- /files/upi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/begulatuk/Torrent-Mirror-Bot/HEAD/files/upi.png -------------------------------------------------------------------------------- /gen_sa_accounts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/begulatuk/Torrent-Mirror-Bot/HEAD/gen_sa_accounts.py -------------------------------------------------------------------------------- /generate_drive_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/begulatuk/Torrent-Mirror-Bot/HEAD/generate_drive_token.py -------------------------------------------------------------------------------- /generate_string_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/begulatuk/Torrent-Mirror-Bot/HEAD/generate_string_session.py -------------------------------------------------------------------------------- /heroku.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/begulatuk/Torrent-Mirror-Bot/HEAD/heroku.yml -------------------------------------------------------------------------------- /netrc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/begulatuk/Torrent-Mirror-Bot/HEAD/requirements.txt -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- 1 | ./aria.sh; python3 -m bot --------------------------------------------------------------------------------