├── .dockerignore ├── .github └── workflows │ └── docker-build.yml ├── .gitignore ├── .idea └── .gitignore ├── .vscode └── launch.json ├── Dockerfile ├── Dockerfile.base ├── Dockerfile.local ├── LICENSE ├── README.md ├── README_EN.md ├── app ├── 115bot.py ├── __init__.py ├── config.yaml.example ├── core │ ├── av_daily_update.py │ ├── headless_browser.py │ ├── offline_task_retry.py │ ├── open_115.py │ ├── scheduler.py │ ├── sehua_spider.py │ └── subscribe_movie.py ├── handlers │ ├── aria2_handler.py │ ├── auth_handler.py │ ├── av_download_handler.py │ ├── crawl_handler.py │ ├── download_handler.py │ ├── offline_task_handler.py │ ├── subscribe_movie_handler.py │ ├── sync_handler.py │ └── video_handler.py ├── images │ ├── av_daily_update.png │ ├── male022.png │ ├── male023.png │ ├── neuter010.png │ ├── no_image.png │ └── sehua_daily_update.png ├── init.py └── utils │ ├── alioss.py │ ├── aria2.py │ ├── cover_capture.py │ ├── logger.py │ ├── message_queue.py │ └── sqlitelib.py ├── config ├── config.yaml.example └── crawling_strategy.yaml ├── create_tg_session_file.py ├── docker-compose.yaml ├── legacy ├── client_115.py ├── subscribe.py └── subscribe_handler.py ├── requirements.txt └── update.md /.dockerignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/workflows/docker-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqiandfei/Telegram-115bot/HEAD/.github/workflows/docker-build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqiandfei/Telegram-115bot/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqiandfei/Telegram-115bot/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqiandfei/Telegram-115bot/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqiandfei/Telegram-115bot/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile.base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqiandfei/Telegram-115bot/HEAD/Dockerfile.base -------------------------------------------------------------------------------- /Dockerfile.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqiandfei/Telegram-115bot/HEAD/Dockerfile.local -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqiandfei/Telegram-115bot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqiandfei/Telegram-115bot/HEAD/README.md -------------------------------------------------------------------------------- /README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqiandfei/Telegram-115bot/HEAD/README_EN.md -------------------------------------------------------------------------------- /app/115bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqiandfei/Telegram-115bot/HEAD/app/115bot.py -------------------------------------------------------------------------------- /app/__init__.py: -------------------------------------------------------------------------------- 1 | # app包的初始化文件 2 | # 模块路径设置已移至init.py中处理 -------------------------------------------------------------------------------- /app/config.yaml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqiandfei/Telegram-115bot/HEAD/app/config.yaml.example -------------------------------------------------------------------------------- /app/core/av_daily_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqiandfei/Telegram-115bot/HEAD/app/core/av_daily_update.py -------------------------------------------------------------------------------- /app/core/headless_browser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqiandfei/Telegram-115bot/HEAD/app/core/headless_browser.py -------------------------------------------------------------------------------- /app/core/offline_task_retry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqiandfei/Telegram-115bot/HEAD/app/core/offline_task_retry.py -------------------------------------------------------------------------------- /app/core/open_115.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqiandfei/Telegram-115bot/HEAD/app/core/open_115.py -------------------------------------------------------------------------------- /app/core/scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqiandfei/Telegram-115bot/HEAD/app/core/scheduler.py -------------------------------------------------------------------------------- /app/core/sehua_spider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqiandfei/Telegram-115bot/HEAD/app/core/sehua_spider.py -------------------------------------------------------------------------------- /app/core/subscribe_movie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqiandfei/Telegram-115bot/HEAD/app/core/subscribe_movie.py -------------------------------------------------------------------------------- /app/handlers/aria2_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqiandfei/Telegram-115bot/HEAD/app/handlers/aria2_handler.py -------------------------------------------------------------------------------- /app/handlers/auth_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqiandfei/Telegram-115bot/HEAD/app/handlers/auth_handler.py -------------------------------------------------------------------------------- /app/handlers/av_download_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqiandfei/Telegram-115bot/HEAD/app/handlers/av_download_handler.py -------------------------------------------------------------------------------- /app/handlers/crawl_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqiandfei/Telegram-115bot/HEAD/app/handlers/crawl_handler.py -------------------------------------------------------------------------------- /app/handlers/download_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqiandfei/Telegram-115bot/HEAD/app/handlers/download_handler.py -------------------------------------------------------------------------------- /app/handlers/offline_task_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqiandfei/Telegram-115bot/HEAD/app/handlers/offline_task_handler.py -------------------------------------------------------------------------------- /app/handlers/subscribe_movie_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqiandfei/Telegram-115bot/HEAD/app/handlers/subscribe_movie_handler.py -------------------------------------------------------------------------------- /app/handlers/sync_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqiandfei/Telegram-115bot/HEAD/app/handlers/sync_handler.py -------------------------------------------------------------------------------- /app/handlers/video_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqiandfei/Telegram-115bot/HEAD/app/handlers/video_handler.py -------------------------------------------------------------------------------- /app/images/av_daily_update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqiandfei/Telegram-115bot/HEAD/app/images/av_daily_update.png -------------------------------------------------------------------------------- /app/images/male022.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqiandfei/Telegram-115bot/HEAD/app/images/male022.png -------------------------------------------------------------------------------- /app/images/male023.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqiandfei/Telegram-115bot/HEAD/app/images/male023.png -------------------------------------------------------------------------------- /app/images/neuter010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqiandfei/Telegram-115bot/HEAD/app/images/neuter010.png -------------------------------------------------------------------------------- /app/images/no_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqiandfei/Telegram-115bot/HEAD/app/images/no_image.png -------------------------------------------------------------------------------- /app/images/sehua_daily_update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqiandfei/Telegram-115bot/HEAD/app/images/sehua_daily_update.png -------------------------------------------------------------------------------- /app/init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqiandfei/Telegram-115bot/HEAD/app/init.py -------------------------------------------------------------------------------- /app/utils/alioss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqiandfei/Telegram-115bot/HEAD/app/utils/alioss.py -------------------------------------------------------------------------------- /app/utils/aria2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqiandfei/Telegram-115bot/HEAD/app/utils/aria2.py -------------------------------------------------------------------------------- /app/utils/cover_capture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqiandfei/Telegram-115bot/HEAD/app/utils/cover_capture.py -------------------------------------------------------------------------------- /app/utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqiandfei/Telegram-115bot/HEAD/app/utils/logger.py -------------------------------------------------------------------------------- /app/utils/message_queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqiandfei/Telegram-115bot/HEAD/app/utils/message_queue.py -------------------------------------------------------------------------------- /app/utils/sqlitelib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqiandfei/Telegram-115bot/HEAD/app/utils/sqlitelib.py -------------------------------------------------------------------------------- /config/config.yaml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqiandfei/Telegram-115bot/HEAD/config/config.yaml.example -------------------------------------------------------------------------------- /config/crawling_strategy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqiandfei/Telegram-115bot/HEAD/config/crawling_strategy.yaml -------------------------------------------------------------------------------- /create_tg_session_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqiandfei/Telegram-115bot/HEAD/create_tg_session_file.py -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqiandfei/Telegram-115bot/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /legacy/client_115.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqiandfei/Telegram-115bot/HEAD/legacy/client_115.py -------------------------------------------------------------------------------- /legacy/subscribe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqiandfei/Telegram-115bot/HEAD/legacy/subscribe.py -------------------------------------------------------------------------------- /legacy/subscribe_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqiandfei/Telegram-115bot/HEAD/legacy/subscribe_handler.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqiandfei/Telegram-115bot/HEAD/requirements.txt -------------------------------------------------------------------------------- /update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiqiandfei/Telegram-115bot/HEAD/update.md --------------------------------------------------------------------------------