├── .gitattributes ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── aria-nox-nzb.sh ├── bot ├── __init__.py ├── __main__.py ├── helper │ ├── __init__.py │ ├── common.py │ ├── ext_utils │ │ ├── __init__.py │ │ ├── bot_utils.py │ │ ├── bulk_links.py │ │ ├── db_handler.py │ │ ├── exceptions.py │ │ ├── files_utils.py │ │ ├── help_messages.py │ │ ├── jdownloader_booter.py │ │ ├── links_utils.py │ │ ├── media_utils.py │ │ ├── shortener.py │ │ ├── status_utils.py │ │ ├── task_manager.py │ │ ├── telegraph_helper.py │ │ └── token_manager.py │ ├── listeners │ │ ├── __init__.py │ │ ├── aria2_listener.py │ │ ├── direct_listener.py │ │ ├── jdownloader_listener.py │ │ ├── mega_listener.py │ │ ├── nzb_listener.py │ │ ├── qbit_listener.py │ │ ├── task_listener.py │ │ └── ytdlp_listener.py │ ├── task_utils │ │ ├── __init__.py │ │ ├── download_utils │ │ │ ├── __init__.py │ │ │ ├── aria2_download.py │ │ │ ├── direct_downloader.py │ │ │ ├── direct_link_generator.py │ │ │ ├── direct_link_generator_license.md │ │ │ ├── gd_download.py │ │ │ ├── jd_download.py │ │ │ ├── mega_download.py │ │ │ ├── nzb_downloader.py │ │ │ ├── qbit_download.py │ │ │ ├── rclone_download.py │ │ │ ├── telegram_download.py │ │ │ └── yt_dlp_download.py │ │ ├── gdrive_utils │ │ │ ├── __init__.py │ │ │ ├── clone.py │ │ │ ├── count.py │ │ │ ├── delete.py │ │ │ ├── download.py │ │ │ ├── helper.py │ │ │ ├── list.py │ │ │ ├── search.py │ │ │ └── upload.py │ │ ├── rclone_utils │ │ │ ├── __init__.py │ │ │ ├── list.py │ │ │ ├── serve.py │ │ │ └── transfer.py │ │ ├── status_utils │ │ │ ├── __init__.py │ │ │ ├── aria2_status.py │ │ │ ├── direct_status.py │ │ │ ├── extract_status.py │ │ │ ├── gdrive_status.py │ │ │ ├── jdownloader_status.py │ │ │ ├── media_convert_status.py │ │ │ ├── mega_download_status.py │ │ │ ├── meta_status.py │ │ │ ├── nzb_status.py │ │ │ ├── qbit_status.py │ │ │ ├── queue_status.py │ │ │ ├── rclone_status.py │ │ │ ├── sample_video_status.py │ │ │ ├── split_status.py │ │ │ ├── telegram_status.py │ │ │ ├── yt_dlp_download_status.py │ │ │ └── zip_status.py │ │ └── telegram_uploader.py │ ├── telegram_helper │ │ ├── __init__.py │ │ ├── bot_commands.py │ │ ├── button_build.py │ │ ├── filters.py │ │ └── message_utils.py │ └── z_utils.py └── modules │ ├── __init__.py │ ├── anonymous.py │ ├── authorize.py │ ├── bot_settings.py │ ├── cancel_task.py │ ├── clone.py │ ├── exec.py │ ├── file_selector.py │ ├── force_start.py │ ├── gd_count.py │ ├── gd_delete.py │ ├── gd_search.py │ ├── help.py │ ├── leech_del.py │ ├── mirror_leech.py │ ├── rmdb.py │ ├── rss.py │ ├── shell.py │ ├── status.py │ ├── torrent_search.py │ ├── users_settings.py │ └── ytdlp.py ├── config_sample.env ├── docker-compose.yml ├── myjd ├── __init__.py ├── const.py ├── exception.py └── myjdapi.py ├── py_generators ├── add_to_team_drive.py ├── driveid.py ├── gen_sa_accounts.py ├── generate_drive_token.py ├── generate_string_session.py └── requirements-cli.txt ├── qBittorrent └── config │ └── qBittorrent.conf ├── requirements.txt ├── sabnzbd └── SABnzbd.ini ├── sabnzbdapi ├── __init__.py ├── bound_methods.py ├── exception.py ├── job_functions.py └── requests.py ├── start.sh ├── update.py └── web ├── __init__.py ├── nodes.py └── wserver.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/README.md -------------------------------------------------------------------------------- /aria-nox-nzb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/aria-nox-nzb.sh -------------------------------------------------------------------------------- /bot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/bot/__init__.py -------------------------------------------------------------------------------- /bot/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/bot/__main__.py -------------------------------------------------------------------------------- /bot/helper/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /bot/helper/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/bot/helper/common.py -------------------------------------------------------------------------------- /bot/helper/ext_utils/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /bot/helper/ext_utils/bot_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/bot/helper/ext_utils/bot_utils.py -------------------------------------------------------------------------------- /bot/helper/ext_utils/bulk_links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/bot/helper/ext_utils/bulk_links.py -------------------------------------------------------------------------------- /bot/helper/ext_utils/db_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/bot/helper/ext_utils/db_handler.py -------------------------------------------------------------------------------- /bot/helper/ext_utils/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/bot/helper/ext_utils/exceptions.py -------------------------------------------------------------------------------- /bot/helper/ext_utils/files_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/bot/helper/ext_utils/files_utils.py -------------------------------------------------------------------------------- /bot/helper/ext_utils/help_messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/bot/helper/ext_utils/help_messages.py -------------------------------------------------------------------------------- /bot/helper/ext_utils/jdownloader_booter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/bot/helper/ext_utils/jdownloader_booter.py -------------------------------------------------------------------------------- /bot/helper/ext_utils/links_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/bot/helper/ext_utils/links_utils.py -------------------------------------------------------------------------------- /bot/helper/ext_utils/media_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/bot/helper/ext_utils/media_utils.py -------------------------------------------------------------------------------- /bot/helper/ext_utils/shortener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/bot/helper/ext_utils/shortener.py -------------------------------------------------------------------------------- /bot/helper/ext_utils/status_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/bot/helper/ext_utils/status_utils.py -------------------------------------------------------------------------------- /bot/helper/ext_utils/task_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/bot/helper/ext_utils/task_manager.py -------------------------------------------------------------------------------- /bot/helper/ext_utils/telegraph_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/bot/helper/ext_utils/telegraph_helper.py -------------------------------------------------------------------------------- /bot/helper/ext_utils/token_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/bot/helper/ext_utils/token_manager.py -------------------------------------------------------------------------------- /bot/helper/listeners/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /bot/helper/listeners/aria2_listener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/bot/helper/listeners/aria2_listener.py -------------------------------------------------------------------------------- /bot/helper/listeners/direct_listener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/bot/helper/listeners/direct_listener.py -------------------------------------------------------------------------------- /bot/helper/listeners/jdownloader_listener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/bot/helper/listeners/jdownloader_listener.py -------------------------------------------------------------------------------- /bot/helper/listeners/mega_listener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/bot/helper/listeners/mega_listener.py -------------------------------------------------------------------------------- /bot/helper/listeners/nzb_listener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/bot/helper/listeners/nzb_listener.py -------------------------------------------------------------------------------- /bot/helper/listeners/qbit_listener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/bot/helper/listeners/qbit_listener.py -------------------------------------------------------------------------------- /bot/helper/listeners/task_listener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/bot/helper/listeners/task_listener.py -------------------------------------------------------------------------------- /bot/helper/listeners/ytdlp_listener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/bot/helper/listeners/ytdlp_listener.py -------------------------------------------------------------------------------- /bot/helper/task_utils/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /bot/helper/task_utils/download_utils/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /bot/helper/task_utils/download_utils/aria2_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/bot/helper/task_utils/download_utils/aria2_download.py -------------------------------------------------------------------------------- /bot/helper/task_utils/download_utils/direct_downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/bot/helper/task_utils/download_utils/direct_downloader.py -------------------------------------------------------------------------------- /bot/helper/task_utils/download_utils/direct_link_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/bot/helper/task_utils/download_utils/direct_link_generator.py -------------------------------------------------------------------------------- /bot/helper/task_utils/download_utils/direct_link_generator_license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/bot/helper/task_utils/download_utils/direct_link_generator_license.md -------------------------------------------------------------------------------- /bot/helper/task_utils/download_utils/gd_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/bot/helper/task_utils/download_utils/gd_download.py -------------------------------------------------------------------------------- /bot/helper/task_utils/download_utils/jd_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/bot/helper/task_utils/download_utils/jd_download.py -------------------------------------------------------------------------------- /bot/helper/task_utils/download_utils/mega_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/bot/helper/task_utils/download_utils/mega_download.py -------------------------------------------------------------------------------- /bot/helper/task_utils/download_utils/nzb_downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/bot/helper/task_utils/download_utils/nzb_downloader.py -------------------------------------------------------------------------------- /bot/helper/task_utils/download_utils/qbit_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/bot/helper/task_utils/download_utils/qbit_download.py -------------------------------------------------------------------------------- /bot/helper/task_utils/download_utils/rclone_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/bot/helper/task_utils/download_utils/rclone_download.py -------------------------------------------------------------------------------- /bot/helper/task_utils/download_utils/telegram_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/bot/helper/task_utils/download_utils/telegram_download.py -------------------------------------------------------------------------------- /bot/helper/task_utils/download_utils/yt_dlp_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/bot/helper/task_utils/download_utils/yt_dlp_download.py -------------------------------------------------------------------------------- /bot/helper/task_utils/gdrive_utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bot/helper/task_utils/gdrive_utils/clone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/bot/helper/task_utils/gdrive_utils/clone.py -------------------------------------------------------------------------------- /bot/helper/task_utils/gdrive_utils/count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/bot/helper/task_utils/gdrive_utils/count.py -------------------------------------------------------------------------------- /bot/helper/task_utils/gdrive_utils/delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/bot/helper/task_utils/gdrive_utils/delete.py -------------------------------------------------------------------------------- /bot/helper/task_utils/gdrive_utils/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/bot/helper/task_utils/gdrive_utils/download.py -------------------------------------------------------------------------------- /bot/helper/task_utils/gdrive_utils/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/bot/helper/task_utils/gdrive_utils/helper.py -------------------------------------------------------------------------------- /bot/helper/task_utils/gdrive_utils/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/bot/helper/task_utils/gdrive_utils/list.py -------------------------------------------------------------------------------- /bot/helper/task_utils/gdrive_utils/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/bot/helper/task_utils/gdrive_utils/search.py -------------------------------------------------------------------------------- /bot/helper/task_utils/gdrive_utils/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/bot/helper/task_utils/gdrive_utils/upload.py -------------------------------------------------------------------------------- /bot/helper/task_utils/rclone_utils/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /bot/helper/task_utils/rclone_utils/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/bot/helper/task_utils/rclone_utils/list.py -------------------------------------------------------------------------------- /bot/helper/task_utils/rclone_utils/serve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/bot/helper/task_utils/rclone_utils/serve.py -------------------------------------------------------------------------------- /bot/helper/task_utils/rclone_utils/transfer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/bot/helper/task_utils/rclone_utils/transfer.py -------------------------------------------------------------------------------- /bot/helper/task_utils/status_utils/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /bot/helper/task_utils/status_utils/aria2_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/bot/helper/task_utils/status_utils/aria2_status.py -------------------------------------------------------------------------------- /bot/helper/task_utils/status_utils/direct_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/bot/helper/task_utils/status_utils/direct_status.py -------------------------------------------------------------------------------- /bot/helper/task_utils/status_utils/extract_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/bot/helper/task_utils/status_utils/extract_status.py -------------------------------------------------------------------------------- /bot/helper/task_utils/status_utils/gdrive_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/bot/helper/task_utils/status_utils/gdrive_status.py -------------------------------------------------------------------------------- /bot/helper/task_utils/status_utils/jdownloader_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/bot/helper/task_utils/status_utils/jdownloader_status.py -------------------------------------------------------------------------------- /bot/helper/task_utils/status_utils/media_convert_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/bot/helper/task_utils/status_utils/media_convert_status.py -------------------------------------------------------------------------------- /bot/helper/task_utils/status_utils/mega_download_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/bot/helper/task_utils/status_utils/mega_download_status.py -------------------------------------------------------------------------------- /bot/helper/task_utils/status_utils/meta_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/bot/helper/task_utils/status_utils/meta_status.py -------------------------------------------------------------------------------- /bot/helper/task_utils/status_utils/nzb_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/bot/helper/task_utils/status_utils/nzb_status.py -------------------------------------------------------------------------------- /bot/helper/task_utils/status_utils/qbit_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/bot/helper/task_utils/status_utils/qbit_status.py -------------------------------------------------------------------------------- /bot/helper/task_utils/status_utils/queue_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/bot/helper/task_utils/status_utils/queue_status.py -------------------------------------------------------------------------------- /bot/helper/task_utils/status_utils/rclone_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/bot/helper/task_utils/status_utils/rclone_status.py -------------------------------------------------------------------------------- /bot/helper/task_utils/status_utils/sample_video_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/bot/helper/task_utils/status_utils/sample_video_status.py -------------------------------------------------------------------------------- /bot/helper/task_utils/status_utils/split_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/bot/helper/task_utils/status_utils/split_status.py -------------------------------------------------------------------------------- /bot/helper/task_utils/status_utils/telegram_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/bot/helper/task_utils/status_utils/telegram_status.py -------------------------------------------------------------------------------- /bot/helper/task_utils/status_utils/yt_dlp_download_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/bot/helper/task_utils/status_utils/yt_dlp_download_status.py -------------------------------------------------------------------------------- /bot/helper/task_utils/status_utils/zip_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/bot/helper/task_utils/status_utils/zip_status.py -------------------------------------------------------------------------------- /bot/helper/task_utils/telegram_uploader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/bot/helper/task_utils/telegram_uploader.py -------------------------------------------------------------------------------- /bot/helper/telegram_helper/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /bot/helper/telegram_helper/bot_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/bot/helper/telegram_helper/bot_commands.py -------------------------------------------------------------------------------- /bot/helper/telegram_helper/button_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/bot/helper/telegram_helper/button_build.py -------------------------------------------------------------------------------- /bot/helper/telegram_helper/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/bot/helper/telegram_helper/filters.py -------------------------------------------------------------------------------- /bot/helper/telegram_helper/message_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/bot/helper/telegram_helper/message_utils.py -------------------------------------------------------------------------------- /bot/helper/z_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/bot/helper/z_utils.py -------------------------------------------------------------------------------- /bot/modules/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /bot/modules/anonymous.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/bot/modules/anonymous.py -------------------------------------------------------------------------------- /bot/modules/authorize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/bot/modules/authorize.py -------------------------------------------------------------------------------- /bot/modules/bot_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/bot/modules/bot_settings.py -------------------------------------------------------------------------------- /bot/modules/cancel_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/bot/modules/cancel_task.py -------------------------------------------------------------------------------- /bot/modules/clone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/bot/modules/clone.py -------------------------------------------------------------------------------- /bot/modules/exec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/bot/modules/exec.py -------------------------------------------------------------------------------- /bot/modules/file_selector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/bot/modules/file_selector.py -------------------------------------------------------------------------------- /bot/modules/force_start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/bot/modules/force_start.py -------------------------------------------------------------------------------- /bot/modules/gd_count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/bot/modules/gd_count.py -------------------------------------------------------------------------------- /bot/modules/gd_delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/bot/modules/gd_delete.py -------------------------------------------------------------------------------- /bot/modules/gd_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/bot/modules/gd_search.py -------------------------------------------------------------------------------- /bot/modules/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/bot/modules/help.py -------------------------------------------------------------------------------- /bot/modules/leech_del.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/bot/modules/leech_del.py -------------------------------------------------------------------------------- /bot/modules/mirror_leech.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/bot/modules/mirror_leech.py -------------------------------------------------------------------------------- /bot/modules/rmdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/bot/modules/rmdb.py -------------------------------------------------------------------------------- /bot/modules/rss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/bot/modules/rss.py -------------------------------------------------------------------------------- /bot/modules/shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/bot/modules/shell.py -------------------------------------------------------------------------------- /bot/modules/status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/bot/modules/status.py -------------------------------------------------------------------------------- /bot/modules/torrent_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/bot/modules/torrent_search.py -------------------------------------------------------------------------------- /bot/modules/users_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/bot/modules/users_settings.py -------------------------------------------------------------------------------- /bot/modules/ytdlp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/bot/modules/ytdlp.py -------------------------------------------------------------------------------- /config_sample.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/config_sample.env -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /myjd/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/myjd/__init__.py -------------------------------------------------------------------------------- /myjd/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/myjd/const.py -------------------------------------------------------------------------------- /myjd/exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/myjd/exception.py -------------------------------------------------------------------------------- /myjd/myjdapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/myjd/myjdapi.py -------------------------------------------------------------------------------- /py_generators/add_to_team_drive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/py_generators/add_to_team_drive.py -------------------------------------------------------------------------------- /py_generators/driveid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/py_generators/driveid.py -------------------------------------------------------------------------------- /py_generators/gen_sa_accounts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/py_generators/gen_sa_accounts.py -------------------------------------------------------------------------------- /py_generators/generate_drive_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/py_generators/generate_drive_token.py -------------------------------------------------------------------------------- /py_generators/generate_string_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/py_generators/generate_string_session.py -------------------------------------------------------------------------------- /py_generators/requirements-cli.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/py_generators/requirements-cli.txt -------------------------------------------------------------------------------- /qBittorrent/config/qBittorrent.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/qBittorrent/config/qBittorrent.conf -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/requirements.txt -------------------------------------------------------------------------------- /sabnzbd/SABnzbd.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/sabnzbd/SABnzbd.ini -------------------------------------------------------------------------------- /sabnzbdapi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/sabnzbdapi/__init__.py -------------------------------------------------------------------------------- /sabnzbdapi/bound_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/sabnzbdapi/bound_methods.py -------------------------------------------------------------------------------- /sabnzbdapi/exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/sabnzbdapi/exception.py -------------------------------------------------------------------------------- /sabnzbdapi/job_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/sabnzbdapi/job_functions.py -------------------------------------------------------------------------------- /sabnzbdapi/requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/sabnzbdapi/requests.py -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/start.sh -------------------------------------------------------------------------------- /update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/update.py -------------------------------------------------------------------------------- /web/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/web/nodes.py -------------------------------------------------------------------------------- /web/wserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawn-India/Z-Mirror/HEAD/web/wserver.py --------------------------------------------------------------------------------