├── .github ├── FUNDING.yml └── workflows │ └── deploy.yml ├── .gitignore ├── .netrc ├── .pre-commit-config.yaml ├── 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 │ │ ├── db_handler.py │ │ ├── exceptions.py │ │ ├── fs_utils.py │ │ └── telegraph_helper.py │ ├── mirror_utils │ │ ├── __init__.py │ │ ├── download_utils │ │ │ ├── __init__.py │ │ │ ├── aria2_download.py │ │ │ ├── direct_link_generator.py │ │ │ ├── direct_link_generator_license.md │ │ │ ├── download_helper.py │ │ │ ├── mega_download.py │ │ │ ├── telegram_downloader.py │ │ │ └── youtube_dl_download_helper.py │ │ ├── status_utils │ │ │ ├── __init__.py │ │ │ ├── aria_download_status.py │ │ │ ├── clone_status.py │ │ │ ├── extract_status.py │ │ │ ├── gdownload_status.py │ │ │ ├── listeners.py │ │ │ ├── mega_status.py │ │ │ ├── split_status.py │ │ │ ├── status.py │ │ │ ├── tar_status.py │ │ │ ├── telegram_download_status.py │ │ │ ├── tg_upload_status.py │ │ │ ├── upload_status.py │ │ │ └── youtube_dl_download_status.py │ │ └── upload_utils │ │ │ ├── __init__.py │ │ │ ├── gdriveTools.py │ │ │ └── pyrogramEngine.py │ └── telegram_helper │ │ ├── __init__.py │ │ ├── bot_commands.py │ │ ├── button_build.py │ │ ├── filters.py │ │ └── message_utils.py └── modules │ ├── __init__.py │ ├── authorize.py │ ├── cancel_mirror.py │ ├── clone.py │ ├── count.py │ ├── delete.py │ ├── leech_settings.py │ ├── list.py │ ├── mirror.py │ ├── mirror_status.py │ ├── speedtest.py │ └── watch.py ├── captain-definition ├── config_sample.env ├── drive_folder ├── driveid.py ├── extract ├── gen_sa_accounts.py ├── generate_drive_token.py ├── generate_string_session.py ├── heroku.yml ├── pextract ├── requirements-cli.txt ├── requirements.txt ├── runtime.txt ├── start └── update.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulkhatri137/mirrorbot137/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulkhatri137/mirrorbot137/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulkhatri137/mirrorbot137/HEAD/.gitignore -------------------------------------------------------------------------------- /.netrc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulkhatri137/mirrorbot137/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulkhatri137/mirrorbot137/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulkhatri137/mirrorbot137/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulkhatri137/mirrorbot137/HEAD/README.md -------------------------------------------------------------------------------- /add_to_team_drive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulkhatri137/mirrorbot137/HEAD/add_to_team_drive.py -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulkhatri137/mirrorbot137/HEAD/app.json -------------------------------------------------------------------------------- /aria.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulkhatri137/mirrorbot137/HEAD/aria.bat -------------------------------------------------------------------------------- /aria.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulkhatri137/mirrorbot137/HEAD/aria.sh -------------------------------------------------------------------------------- /bot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulkhatri137/mirrorbot137/HEAD/bot/__init__.py -------------------------------------------------------------------------------- /bot/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulkhatri137/mirrorbot137/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/rahulkhatri137/mirrorbot137/HEAD/bot/helper/ext_utils/bot_utils.py -------------------------------------------------------------------------------- /bot/helper/ext_utils/db_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulkhatri137/mirrorbot137/HEAD/bot/helper/ext_utils/db_handler.py -------------------------------------------------------------------------------- /bot/helper/ext_utils/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulkhatri137/mirrorbot137/HEAD/bot/helper/ext_utils/exceptions.py -------------------------------------------------------------------------------- /bot/helper/ext_utils/fs_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulkhatri137/mirrorbot137/HEAD/bot/helper/ext_utils/fs_utils.py -------------------------------------------------------------------------------- /bot/helper/ext_utils/telegraph_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulkhatri137/mirrorbot137/HEAD/bot/helper/ext_utils/telegraph_helper.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/rahulkhatri137/mirrorbot137/HEAD/bot/helper/mirror_utils/download_utils/aria2_download.py -------------------------------------------------------------------------------- /bot/helper/mirror_utils/download_utils/direct_link_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulkhatri137/mirrorbot137/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/rahulkhatri137/mirrorbot137/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/rahulkhatri137/mirrorbot137/HEAD/bot/helper/mirror_utils/download_utils/download_helper.py -------------------------------------------------------------------------------- /bot/helper/mirror_utils/download_utils/mega_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulkhatri137/mirrorbot137/HEAD/bot/helper/mirror_utils/download_utils/mega_download.py -------------------------------------------------------------------------------- /bot/helper/mirror_utils/download_utils/telegram_downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulkhatri137/mirrorbot137/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/rahulkhatri137/mirrorbot137/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/rahulkhatri137/mirrorbot137/HEAD/bot/helper/mirror_utils/status_utils/aria_download_status.py -------------------------------------------------------------------------------- /bot/helper/mirror_utils/status_utils/clone_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulkhatri137/mirrorbot137/HEAD/bot/helper/mirror_utils/status_utils/clone_status.py -------------------------------------------------------------------------------- /bot/helper/mirror_utils/status_utils/extract_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulkhatri137/mirrorbot137/HEAD/bot/helper/mirror_utils/status_utils/extract_status.py -------------------------------------------------------------------------------- /bot/helper/mirror_utils/status_utils/gdownload_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulkhatri137/mirrorbot137/HEAD/bot/helper/mirror_utils/status_utils/gdownload_status.py -------------------------------------------------------------------------------- /bot/helper/mirror_utils/status_utils/listeners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulkhatri137/mirrorbot137/HEAD/bot/helper/mirror_utils/status_utils/listeners.py -------------------------------------------------------------------------------- /bot/helper/mirror_utils/status_utils/mega_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulkhatri137/mirrorbot137/HEAD/bot/helper/mirror_utils/status_utils/mega_status.py -------------------------------------------------------------------------------- /bot/helper/mirror_utils/status_utils/split_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulkhatri137/mirrorbot137/HEAD/bot/helper/mirror_utils/status_utils/split_status.py -------------------------------------------------------------------------------- /bot/helper/mirror_utils/status_utils/status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulkhatri137/mirrorbot137/HEAD/bot/helper/mirror_utils/status_utils/status.py -------------------------------------------------------------------------------- /bot/helper/mirror_utils/status_utils/tar_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulkhatri137/mirrorbot137/HEAD/bot/helper/mirror_utils/status_utils/tar_status.py -------------------------------------------------------------------------------- /bot/helper/mirror_utils/status_utils/telegram_download_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulkhatri137/mirrorbot137/HEAD/bot/helper/mirror_utils/status_utils/telegram_download_status.py -------------------------------------------------------------------------------- /bot/helper/mirror_utils/status_utils/tg_upload_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulkhatri137/mirrorbot137/HEAD/bot/helper/mirror_utils/status_utils/tg_upload_status.py -------------------------------------------------------------------------------- /bot/helper/mirror_utils/status_utils/upload_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulkhatri137/mirrorbot137/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/rahulkhatri137/mirrorbot137/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/rahulkhatri137/mirrorbot137/HEAD/bot/helper/mirror_utils/upload_utils/gdriveTools.py -------------------------------------------------------------------------------- /bot/helper/mirror_utils/upload_utils/pyrogramEngine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulkhatri137/mirrorbot137/HEAD/bot/helper/mirror_utils/upload_utils/pyrogramEngine.py -------------------------------------------------------------------------------- /bot/helper/telegram_helper/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bot/helper/telegram_helper/bot_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulkhatri137/mirrorbot137/HEAD/bot/helper/telegram_helper/bot_commands.py -------------------------------------------------------------------------------- /bot/helper/telegram_helper/button_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulkhatri137/mirrorbot137/HEAD/bot/helper/telegram_helper/button_build.py -------------------------------------------------------------------------------- /bot/helper/telegram_helper/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulkhatri137/mirrorbot137/HEAD/bot/helper/telegram_helper/filters.py -------------------------------------------------------------------------------- /bot/helper/telegram_helper/message_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulkhatri137/mirrorbot137/HEAD/bot/helper/telegram_helper/message_utils.py -------------------------------------------------------------------------------- /bot/modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bot/modules/authorize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulkhatri137/mirrorbot137/HEAD/bot/modules/authorize.py -------------------------------------------------------------------------------- /bot/modules/cancel_mirror.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulkhatri137/mirrorbot137/HEAD/bot/modules/cancel_mirror.py -------------------------------------------------------------------------------- /bot/modules/clone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulkhatri137/mirrorbot137/HEAD/bot/modules/clone.py -------------------------------------------------------------------------------- /bot/modules/count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulkhatri137/mirrorbot137/HEAD/bot/modules/count.py -------------------------------------------------------------------------------- /bot/modules/delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulkhatri137/mirrorbot137/HEAD/bot/modules/delete.py -------------------------------------------------------------------------------- /bot/modules/leech_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulkhatri137/mirrorbot137/HEAD/bot/modules/leech_settings.py -------------------------------------------------------------------------------- /bot/modules/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulkhatri137/mirrorbot137/HEAD/bot/modules/list.py -------------------------------------------------------------------------------- /bot/modules/mirror.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulkhatri137/mirrorbot137/HEAD/bot/modules/mirror.py -------------------------------------------------------------------------------- /bot/modules/mirror_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulkhatri137/mirrorbot137/HEAD/bot/modules/mirror_status.py -------------------------------------------------------------------------------- /bot/modules/speedtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulkhatri137/mirrorbot137/HEAD/bot/modules/speedtest.py -------------------------------------------------------------------------------- /bot/modules/watch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulkhatri137/mirrorbot137/HEAD/bot/modules/watch.py -------------------------------------------------------------------------------- /captain-definition: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulkhatri137/mirrorbot137/HEAD/captain-definition -------------------------------------------------------------------------------- /config_sample.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulkhatri137/mirrorbot137/HEAD/config_sample.env -------------------------------------------------------------------------------- /drive_folder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /driveid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulkhatri137/mirrorbot137/HEAD/driveid.py -------------------------------------------------------------------------------- /extract: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulkhatri137/mirrorbot137/HEAD/extract -------------------------------------------------------------------------------- /gen_sa_accounts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulkhatri137/mirrorbot137/HEAD/gen_sa_accounts.py -------------------------------------------------------------------------------- /generate_drive_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulkhatri137/mirrorbot137/HEAD/generate_drive_token.py -------------------------------------------------------------------------------- /generate_string_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulkhatri137/mirrorbot137/HEAD/generate_string_session.py -------------------------------------------------------------------------------- /heroku.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulkhatri137/mirrorbot137/HEAD/heroku.yml -------------------------------------------------------------------------------- /pextract: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulkhatri137/mirrorbot137/HEAD/pextract -------------------------------------------------------------------------------- /requirements-cli.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulkhatri137/mirrorbot137/HEAD/requirements-cli.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulkhatri137/mirrorbot137/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.10.1 -------------------------------------------------------------------------------- /start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulkhatri137/mirrorbot137/HEAD/start -------------------------------------------------------------------------------- /update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulkhatri137/mirrorbot137/HEAD/update.py --------------------------------------------------------------------------------