├── .gitignore ├── .gitmodules ├── .netrc ├── Dockerfile ├── LICENSE ├── README.md ├── add_to_team_drive.py ├── app.json ├── aria.bat ├── aria.sh ├── bot ├── __init__.py ├── __main__.py ├── helper │ ├── __init__.py │ ├── custom_filters.py │ ├── ext_utils │ │ ├── __init__.py │ │ ├── bot_utils.py │ │ ├── exceptions.py │ │ └── fs_utils.py │ ├── mirror_utils │ │ ├── __init__.py │ │ ├── download_utils │ │ │ ├── __init__.py │ │ │ ├── aria2_download.py │ │ │ ├── direct_link_generator.py │ │ │ ├── direct_link_generator_license.md │ │ │ ├── download_helper.py │ │ │ ├── mega_downloader.py │ │ │ ├── telegram_downloader.py │ │ │ └── youtube_dl_download_helper.py │ │ ├── status_utils │ │ │ ├── __init__.py │ │ │ ├── aria_download_status.py │ │ │ ├── extract_status.py │ │ │ ├── listeners.py │ │ │ ├── mega_download_status.py │ │ │ ├── status.py │ │ │ ├── tar_status.py │ │ │ ├── telegram_download_status.py │ │ │ ├── upload_status.py │ │ │ └── youtube_dl_download_status.py │ │ └── upload_utils │ │ │ ├── __init__.py │ │ │ └── gdriveTools.py │ └── telegram_helper │ │ ├── __init__.py │ │ ├── bot_commands.py │ │ ├── button_build.py │ │ ├── filters.py │ │ └── message_utils.py └── modules │ ├── __init__.py │ ├── authorize.py │ ├── cancel_mirror.py │ ├── clone.py │ ├── delete.py │ ├── eval.py │ ├── list.py │ ├── mirror.py │ ├── mirror_status.py │ ├── search.py │ ├── shell.py │ ├── speedtest.py │ ├── usage.py │ └── watch.py ├── captain-definition ├── config_sample.env ├── extract ├── gen_sa_accounts.py ├── generate_drive_token.py ├── heroku.yml ├── pextract ├── requirements.txt ├── start.sh └── vendor └── cmrudl.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectninjatech/pntbot/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectninjatech/pntbot/HEAD/.gitmodules -------------------------------------------------------------------------------- /.netrc: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectninjatech/pntbot/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectninjatech/pntbot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectninjatech/pntbot/HEAD/README.md -------------------------------------------------------------------------------- /add_to_team_drive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectninjatech/pntbot/HEAD/add_to_team_drive.py -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectninjatech/pntbot/HEAD/app.json -------------------------------------------------------------------------------- /aria.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectninjatech/pntbot/HEAD/aria.bat -------------------------------------------------------------------------------- /aria.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectninjatech/pntbot/HEAD/aria.sh -------------------------------------------------------------------------------- /bot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectninjatech/pntbot/HEAD/bot/__init__.py -------------------------------------------------------------------------------- /bot/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectninjatech/pntbot/HEAD/bot/__main__.py -------------------------------------------------------------------------------- /bot/helper/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /bot/helper/custom_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectninjatech/pntbot/HEAD/bot/helper/custom_filters.py -------------------------------------------------------------------------------- /bot/helper/ext_utils/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /bot/helper/ext_utils/bot_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectninjatech/pntbot/HEAD/bot/helper/ext_utils/bot_utils.py -------------------------------------------------------------------------------- /bot/helper/ext_utils/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectninjatech/pntbot/HEAD/bot/helper/ext_utils/exceptions.py -------------------------------------------------------------------------------- /bot/helper/ext_utils/fs_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectninjatech/pntbot/HEAD/bot/helper/ext_utils/fs_utils.py -------------------------------------------------------------------------------- /bot/helper/mirror_utils/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /bot/helper/mirror_utils/download_utils/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /bot/helper/mirror_utils/download_utils/aria2_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectninjatech/pntbot/HEAD/bot/helper/mirror_utils/download_utils/aria2_download.py -------------------------------------------------------------------------------- /bot/helper/mirror_utils/download_utils/direct_link_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectninjatech/pntbot/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/projectninjatech/pntbot/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/projectninjatech/pntbot/HEAD/bot/helper/mirror_utils/download_utils/download_helper.py -------------------------------------------------------------------------------- /bot/helper/mirror_utils/download_utils/mega_downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectninjatech/pntbot/HEAD/bot/helper/mirror_utils/download_utils/mega_downloader.py -------------------------------------------------------------------------------- /bot/helper/mirror_utils/download_utils/telegram_downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectninjatech/pntbot/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/projectninjatech/pntbot/HEAD/bot/helper/mirror_utils/download_utils/youtube_dl_download_helper.py -------------------------------------------------------------------------------- /bot/helper/mirror_utils/status_utils/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /bot/helper/mirror_utils/status_utils/aria_download_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectninjatech/pntbot/HEAD/bot/helper/mirror_utils/status_utils/aria_download_status.py -------------------------------------------------------------------------------- /bot/helper/mirror_utils/status_utils/extract_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectninjatech/pntbot/HEAD/bot/helper/mirror_utils/status_utils/extract_status.py -------------------------------------------------------------------------------- /bot/helper/mirror_utils/status_utils/listeners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectninjatech/pntbot/HEAD/bot/helper/mirror_utils/status_utils/listeners.py -------------------------------------------------------------------------------- /bot/helper/mirror_utils/status_utils/mega_download_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectninjatech/pntbot/HEAD/bot/helper/mirror_utils/status_utils/mega_download_status.py -------------------------------------------------------------------------------- /bot/helper/mirror_utils/status_utils/status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectninjatech/pntbot/HEAD/bot/helper/mirror_utils/status_utils/status.py -------------------------------------------------------------------------------- /bot/helper/mirror_utils/status_utils/tar_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectninjatech/pntbot/HEAD/bot/helper/mirror_utils/status_utils/tar_status.py -------------------------------------------------------------------------------- /bot/helper/mirror_utils/status_utils/telegram_download_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectninjatech/pntbot/HEAD/bot/helper/mirror_utils/status_utils/telegram_download_status.py -------------------------------------------------------------------------------- /bot/helper/mirror_utils/status_utils/upload_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectninjatech/pntbot/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/projectninjatech/pntbot/HEAD/bot/helper/mirror_utils/status_utils/youtube_dl_download_status.py -------------------------------------------------------------------------------- /bot/helper/mirror_utils/upload_utils/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /bot/helper/mirror_utils/upload_utils/gdriveTools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectninjatech/pntbot/HEAD/bot/helper/mirror_utils/upload_utils/gdriveTools.py -------------------------------------------------------------------------------- /bot/helper/telegram_helper/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /bot/helper/telegram_helper/bot_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectninjatech/pntbot/HEAD/bot/helper/telegram_helper/bot_commands.py -------------------------------------------------------------------------------- /bot/helper/telegram_helper/button_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectninjatech/pntbot/HEAD/bot/helper/telegram_helper/button_build.py -------------------------------------------------------------------------------- /bot/helper/telegram_helper/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectninjatech/pntbot/HEAD/bot/helper/telegram_helper/filters.py -------------------------------------------------------------------------------- /bot/helper/telegram_helper/message_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectninjatech/pntbot/HEAD/bot/helper/telegram_helper/message_utils.py -------------------------------------------------------------------------------- /bot/modules/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /bot/modules/authorize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectninjatech/pntbot/HEAD/bot/modules/authorize.py -------------------------------------------------------------------------------- /bot/modules/cancel_mirror.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectninjatech/pntbot/HEAD/bot/modules/cancel_mirror.py -------------------------------------------------------------------------------- /bot/modules/clone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectninjatech/pntbot/HEAD/bot/modules/clone.py -------------------------------------------------------------------------------- /bot/modules/delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectninjatech/pntbot/HEAD/bot/modules/delete.py -------------------------------------------------------------------------------- /bot/modules/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectninjatech/pntbot/HEAD/bot/modules/eval.py -------------------------------------------------------------------------------- /bot/modules/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectninjatech/pntbot/HEAD/bot/modules/list.py -------------------------------------------------------------------------------- /bot/modules/mirror.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectninjatech/pntbot/HEAD/bot/modules/mirror.py -------------------------------------------------------------------------------- /bot/modules/mirror_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectninjatech/pntbot/HEAD/bot/modules/mirror_status.py -------------------------------------------------------------------------------- /bot/modules/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectninjatech/pntbot/HEAD/bot/modules/search.py -------------------------------------------------------------------------------- /bot/modules/shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectninjatech/pntbot/HEAD/bot/modules/shell.py -------------------------------------------------------------------------------- /bot/modules/speedtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectninjatech/pntbot/HEAD/bot/modules/speedtest.py -------------------------------------------------------------------------------- /bot/modules/usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectninjatech/pntbot/HEAD/bot/modules/usage.py -------------------------------------------------------------------------------- /bot/modules/watch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectninjatech/pntbot/HEAD/bot/modules/watch.py -------------------------------------------------------------------------------- /captain-definition: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectninjatech/pntbot/HEAD/captain-definition -------------------------------------------------------------------------------- /config_sample.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectninjatech/pntbot/HEAD/config_sample.env -------------------------------------------------------------------------------- /extract: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectninjatech/pntbot/HEAD/extract -------------------------------------------------------------------------------- /gen_sa_accounts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectninjatech/pntbot/HEAD/gen_sa_accounts.py -------------------------------------------------------------------------------- /generate_drive_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectninjatech/pntbot/HEAD/generate_drive_token.py -------------------------------------------------------------------------------- /heroku.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectninjatech/pntbot/HEAD/heroku.yml -------------------------------------------------------------------------------- /pextract: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectninjatech/pntbot/HEAD/pextract -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectninjatech/pntbot/HEAD/requirements.txt -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- 1 | ./aria.sh; python3 -m bot -------------------------------------------------------------------------------- /vendor/cmrudl.py: -------------------------------------------------------------------------------- 1 | 2 | --------------------------------------------------------------------------------