├── .github └── workflows │ └── deploy.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── add_to_team_drive.py ├── aria.sh ├── bot ├── __init__.py ├── __main__.py ├── conv_pyrogram.py ├── helper │ ├── __init__.py │ ├── ext_utils │ │ ├── __init__.py │ │ ├── batch_helper.py │ │ ├── bot_utils.py │ │ ├── db_handler.py │ │ ├── exceptions.py │ │ ├── help_messages.py │ │ ├── human_format.py │ │ ├── media_utils.py │ │ ├── menu_utils.py │ │ ├── misc_utils.py │ │ ├── rclone_data_holder.py │ │ ├── rclone_utils.py │ │ └── telegraph_helper.py │ ├── mirror_leech_utils │ │ ├── __init__.py │ │ ├── debrid_utils │ │ │ └── debrid_helper.py │ │ ├── download_utils │ │ │ ├── __init__.py │ │ │ ├── aria2_download.py │ │ │ ├── direct_link_generator.py │ │ │ ├── direct_link_generator_license.md │ │ │ ├── gd_downloader.py │ │ │ ├── mega_download.py │ │ │ ├── qbit_downloader.py │ │ │ ├── rclone_copy.py │ │ │ ├── rclone_leech.py │ │ │ ├── telegram_downloader.py │ │ │ └── yt_dlp_helper.py │ │ ├── gd_utils │ │ │ ├── clone.py │ │ │ ├── count.py │ │ │ ├── download.py │ │ │ └── helper.py │ │ ├── status_utils │ │ │ ├── __init__.py │ │ │ ├── aria_status.py │ │ │ ├── clone_status.py │ │ │ ├── extract_status.py │ │ │ ├── gdrive_status.py │ │ │ ├── mega_status.py │ │ │ ├── qbit_status.py │ │ │ ├── rclone_status.py │ │ │ ├── split_status.py │ │ │ ├── status_utils.py │ │ │ ├── sync_status.py │ │ │ ├── tg_download_status.py │ │ │ ├── tg_upload_status.py │ │ │ ├── yt_dlp_status.py │ │ │ └── zip_status.py │ │ └── upload_utils │ │ │ ├── __init__.py │ │ │ ├── rclone_mirror.py │ │ │ └── telegram_uploader.py │ └── telegram_helper │ │ ├── bot_commands.py │ │ ├── button_build.py │ │ ├── filters.py │ │ └── message_utils.py └── modules │ ├── __init__.py │ ├── batch.py │ ├── bisync.py │ ├── botfiles.py │ ├── cancel.py │ ├── cleanup.py │ ├── clone.py │ ├── copy.py │ ├── debrid.py │ ├── exec.py │ ├── gd_count.py │ ├── leech.py │ ├── mirror_leech.py │ ├── mirror_select.py │ ├── myfilesset.py │ ├── owner_settings.py │ ├── queue.py │ ├── rcfm.py │ ├── rss.py │ ├── serve.py │ ├── shell.py │ ├── stats.py │ ├── status.py │ ├── storage.py │ ├── sync.py │ ├── tasks_listener.py │ ├── tmdb.py │ ├── torr_search.py │ ├── torr_select.py │ ├── user_settings.py │ └── ytdlp.py ├── docker-compose.yml ├── gen_sa_accounts.py ├── generate_drive_token.py ├── qBittorrent └── config │ └── qBittorrent.conf ├── qbitweb ├── __init__.py ├── nodes.py └── wserver.py ├── requirements-cli.txt ├── requirements.txt ├── sample_config.env ├── screenshot.png ├── session_generator.py ├── start.sh └── update.py /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/README.md -------------------------------------------------------------------------------- /add_to_team_drive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/add_to_team_drive.py -------------------------------------------------------------------------------- /aria.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/aria.sh -------------------------------------------------------------------------------- /bot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/bot/__init__.py -------------------------------------------------------------------------------- /bot/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/bot/__main__.py -------------------------------------------------------------------------------- /bot/conv_pyrogram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/bot/conv_pyrogram.py -------------------------------------------------------------------------------- /bot/helper/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bot/helper/ext_utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bot/helper/ext_utils/batch_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/bot/helper/ext_utils/batch_helper.py -------------------------------------------------------------------------------- /bot/helper/ext_utils/bot_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/bot/helper/ext_utils/bot_utils.py -------------------------------------------------------------------------------- /bot/helper/ext_utils/db_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/bot/helper/ext_utils/db_handler.py -------------------------------------------------------------------------------- /bot/helper/ext_utils/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/bot/helper/ext_utils/exceptions.py -------------------------------------------------------------------------------- /bot/helper/ext_utils/help_messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/bot/helper/ext_utils/help_messages.py -------------------------------------------------------------------------------- /bot/helper/ext_utils/human_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/bot/helper/ext_utils/human_format.py -------------------------------------------------------------------------------- /bot/helper/ext_utils/media_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/bot/helper/ext_utils/media_utils.py -------------------------------------------------------------------------------- /bot/helper/ext_utils/menu_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/bot/helper/ext_utils/menu_utils.py -------------------------------------------------------------------------------- /bot/helper/ext_utils/misc_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/bot/helper/ext_utils/misc_utils.py -------------------------------------------------------------------------------- /bot/helper/ext_utils/rclone_data_holder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/bot/helper/ext_utils/rclone_data_holder.py -------------------------------------------------------------------------------- /bot/helper/ext_utils/rclone_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/bot/helper/ext_utils/rclone_utils.py -------------------------------------------------------------------------------- /bot/helper/ext_utils/telegraph_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/bot/helper/ext_utils/telegraph_helper.py -------------------------------------------------------------------------------- /bot/helper/mirror_leech_utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bot/helper/mirror_leech_utils/debrid_utils/debrid_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/bot/helper/mirror_leech_utils/debrid_utils/debrid_helper.py -------------------------------------------------------------------------------- /bot/helper/mirror_leech_utils/download_utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bot/helper/mirror_leech_utils/download_utils/aria2_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/bot/helper/mirror_leech_utils/download_utils/aria2_download.py -------------------------------------------------------------------------------- /bot/helper/mirror_leech_utils/download_utils/direct_link_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/bot/helper/mirror_leech_utils/download_utils/direct_link_generator.py -------------------------------------------------------------------------------- /bot/helper/mirror_leech_utils/download_utils/direct_link_generator_license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/bot/helper/mirror_leech_utils/download_utils/direct_link_generator_license.md -------------------------------------------------------------------------------- /bot/helper/mirror_leech_utils/download_utils/gd_downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/bot/helper/mirror_leech_utils/download_utils/gd_downloader.py -------------------------------------------------------------------------------- /bot/helper/mirror_leech_utils/download_utils/mega_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/bot/helper/mirror_leech_utils/download_utils/mega_download.py -------------------------------------------------------------------------------- /bot/helper/mirror_leech_utils/download_utils/qbit_downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/bot/helper/mirror_leech_utils/download_utils/qbit_downloader.py -------------------------------------------------------------------------------- /bot/helper/mirror_leech_utils/download_utils/rclone_copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/bot/helper/mirror_leech_utils/download_utils/rclone_copy.py -------------------------------------------------------------------------------- /bot/helper/mirror_leech_utils/download_utils/rclone_leech.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/bot/helper/mirror_leech_utils/download_utils/rclone_leech.py -------------------------------------------------------------------------------- /bot/helper/mirror_leech_utils/download_utils/telegram_downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/bot/helper/mirror_leech_utils/download_utils/telegram_downloader.py -------------------------------------------------------------------------------- /bot/helper/mirror_leech_utils/download_utils/yt_dlp_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/bot/helper/mirror_leech_utils/download_utils/yt_dlp_helper.py -------------------------------------------------------------------------------- /bot/helper/mirror_leech_utils/gd_utils/clone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/bot/helper/mirror_leech_utils/gd_utils/clone.py -------------------------------------------------------------------------------- /bot/helper/mirror_leech_utils/gd_utils/count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/bot/helper/mirror_leech_utils/gd_utils/count.py -------------------------------------------------------------------------------- /bot/helper/mirror_leech_utils/gd_utils/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/bot/helper/mirror_leech_utils/gd_utils/download.py -------------------------------------------------------------------------------- /bot/helper/mirror_leech_utils/gd_utils/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/bot/helper/mirror_leech_utils/gd_utils/helper.py -------------------------------------------------------------------------------- /bot/helper/mirror_leech_utils/status_utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bot/helper/mirror_leech_utils/status_utils/aria_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/bot/helper/mirror_leech_utils/status_utils/aria_status.py -------------------------------------------------------------------------------- /bot/helper/mirror_leech_utils/status_utils/clone_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/bot/helper/mirror_leech_utils/status_utils/clone_status.py -------------------------------------------------------------------------------- /bot/helper/mirror_leech_utils/status_utils/extract_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/bot/helper/mirror_leech_utils/status_utils/extract_status.py -------------------------------------------------------------------------------- /bot/helper/mirror_leech_utils/status_utils/gdrive_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/bot/helper/mirror_leech_utils/status_utils/gdrive_status.py -------------------------------------------------------------------------------- /bot/helper/mirror_leech_utils/status_utils/mega_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/bot/helper/mirror_leech_utils/status_utils/mega_status.py -------------------------------------------------------------------------------- /bot/helper/mirror_leech_utils/status_utils/qbit_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/bot/helper/mirror_leech_utils/status_utils/qbit_status.py -------------------------------------------------------------------------------- /bot/helper/mirror_leech_utils/status_utils/rclone_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/bot/helper/mirror_leech_utils/status_utils/rclone_status.py -------------------------------------------------------------------------------- /bot/helper/mirror_leech_utils/status_utils/split_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/bot/helper/mirror_leech_utils/status_utils/split_status.py -------------------------------------------------------------------------------- /bot/helper/mirror_leech_utils/status_utils/status_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/bot/helper/mirror_leech_utils/status_utils/status_utils.py -------------------------------------------------------------------------------- /bot/helper/mirror_leech_utils/status_utils/sync_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/bot/helper/mirror_leech_utils/status_utils/sync_status.py -------------------------------------------------------------------------------- /bot/helper/mirror_leech_utils/status_utils/tg_download_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/bot/helper/mirror_leech_utils/status_utils/tg_download_status.py -------------------------------------------------------------------------------- /bot/helper/mirror_leech_utils/status_utils/tg_upload_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/bot/helper/mirror_leech_utils/status_utils/tg_upload_status.py -------------------------------------------------------------------------------- /bot/helper/mirror_leech_utils/status_utils/yt_dlp_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/bot/helper/mirror_leech_utils/status_utils/yt_dlp_status.py -------------------------------------------------------------------------------- /bot/helper/mirror_leech_utils/status_utils/zip_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/bot/helper/mirror_leech_utils/status_utils/zip_status.py -------------------------------------------------------------------------------- /bot/helper/mirror_leech_utils/upload_utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bot/helper/mirror_leech_utils/upload_utils/rclone_mirror.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/bot/helper/mirror_leech_utils/upload_utils/rclone_mirror.py -------------------------------------------------------------------------------- /bot/helper/mirror_leech_utils/upload_utils/telegram_uploader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/bot/helper/mirror_leech_utils/upload_utils/telegram_uploader.py -------------------------------------------------------------------------------- /bot/helper/telegram_helper/bot_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/bot/helper/telegram_helper/bot_commands.py -------------------------------------------------------------------------------- /bot/helper/telegram_helper/button_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/bot/helper/telegram_helper/button_build.py -------------------------------------------------------------------------------- /bot/helper/telegram_helper/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/bot/helper/telegram_helper/filters.py -------------------------------------------------------------------------------- /bot/helper/telegram_helper/message_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/bot/helper/telegram_helper/message_utils.py -------------------------------------------------------------------------------- /bot/modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bot/modules/batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/bot/modules/batch.py -------------------------------------------------------------------------------- /bot/modules/bisync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/bot/modules/bisync.py -------------------------------------------------------------------------------- /bot/modules/botfiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/bot/modules/botfiles.py -------------------------------------------------------------------------------- /bot/modules/cancel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/bot/modules/cancel.py -------------------------------------------------------------------------------- /bot/modules/cleanup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/bot/modules/cleanup.py -------------------------------------------------------------------------------- /bot/modules/clone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/bot/modules/clone.py -------------------------------------------------------------------------------- /bot/modules/copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/bot/modules/copy.py -------------------------------------------------------------------------------- /bot/modules/debrid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/bot/modules/debrid.py -------------------------------------------------------------------------------- /bot/modules/exec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/bot/modules/exec.py -------------------------------------------------------------------------------- /bot/modules/gd_count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/bot/modules/gd_count.py -------------------------------------------------------------------------------- /bot/modules/leech.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/bot/modules/leech.py -------------------------------------------------------------------------------- /bot/modules/mirror_leech.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/bot/modules/mirror_leech.py -------------------------------------------------------------------------------- /bot/modules/mirror_select.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/bot/modules/mirror_select.py -------------------------------------------------------------------------------- /bot/modules/myfilesset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/bot/modules/myfilesset.py -------------------------------------------------------------------------------- /bot/modules/owner_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/bot/modules/owner_settings.py -------------------------------------------------------------------------------- /bot/modules/queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/bot/modules/queue.py -------------------------------------------------------------------------------- /bot/modules/rcfm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/bot/modules/rcfm.py -------------------------------------------------------------------------------- /bot/modules/rss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/bot/modules/rss.py -------------------------------------------------------------------------------- /bot/modules/serve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/bot/modules/serve.py -------------------------------------------------------------------------------- /bot/modules/shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/bot/modules/shell.py -------------------------------------------------------------------------------- /bot/modules/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/bot/modules/stats.py -------------------------------------------------------------------------------- /bot/modules/status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/bot/modules/status.py -------------------------------------------------------------------------------- /bot/modules/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/bot/modules/storage.py -------------------------------------------------------------------------------- /bot/modules/sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/bot/modules/sync.py -------------------------------------------------------------------------------- /bot/modules/tasks_listener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/bot/modules/tasks_listener.py -------------------------------------------------------------------------------- /bot/modules/tmdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/bot/modules/tmdb.py -------------------------------------------------------------------------------- /bot/modules/torr_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/bot/modules/torr_search.py -------------------------------------------------------------------------------- /bot/modules/torr_select.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/bot/modules/torr_select.py -------------------------------------------------------------------------------- /bot/modules/user_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/bot/modules/user_settings.py -------------------------------------------------------------------------------- /bot/modules/ytdlp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/bot/modules/ytdlp.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /gen_sa_accounts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/gen_sa_accounts.py -------------------------------------------------------------------------------- /generate_drive_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/generate_drive_token.py -------------------------------------------------------------------------------- /qBittorrent/config/qBittorrent.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/qBittorrent/config/qBittorrent.conf -------------------------------------------------------------------------------- /qbitweb/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /qbitweb/nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/qbitweb/nodes.py -------------------------------------------------------------------------------- /qbitweb/wserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/qbitweb/wserver.py -------------------------------------------------------------------------------- /requirements-cli.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/requirements-cli.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/requirements.txt -------------------------------------------------------------------------------- /sample_config.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/sample_config.env -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/screenshot.png -------------------------------------------------------------------------------- /session_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/session_generator.py -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/start.sh -------------------------------------------------------------------------------- /update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sam-Max/rcmltb/HEAD/update.py --------------------------------------------------------------------------------