├── .dockerignore ├── .github └── workflows │ ├── docker v.yml │ └── docker.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── app ├── __init__.py ├── bin │ ├── chromedriver │ ├── chromedriver.exe │ └── hook.js ├── config │ └── config.ini.example └── utils │ ├── __init__.py │ ├── cloudflare.py │ ├── dmm.py │ ├── faleno.py │ ├── func_handler.py │ ├── func_requests.py │ ├── get_update.py │ ├── identify.py │ ├── jav_thread.py │ ├── magnet.py │ ├── monthly.py │ ├── playerlist.py │ ├── shell.py │ ├── task.py │ └── templates │ ├── cid.md │ ├── face_girl.md │ ├── faleno.md │ ├── faleno_actress.md │ ├── faleno_work.md │ ├── javmost.md │ ├── magnet.md │ ├── search.md │ └── searchall.md ├── mybot.py ├── requirements.txt └── start.sh /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horryruo/multi-bot/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/workflows/docker v.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horryruo/multi-bot/HEAD/.github/workflows/docker v.yml -------------------------------------------------------------------------------- /.github/workflows/docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horryruo/multi-bot/HEAD/.github/workflows/docker.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horryruo/multi-bot/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horryruo/multi-bot/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horryruo/multi-bot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horryruo/multi-bot/HEAD/README.md -------------------------------------------------------------------------------- /app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/bin/chromedriver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horryruo/multi-bot/HEAD/app/bin/chromedriver -------------------------------------------------------------------------------- /app/bin/chromedriver.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horryruo/multi-bot/HEAD/app/bin/chromedriver.exe -------------------------------------------------------------------------------- /app/bin/hook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horryruo/multi-bot/HEAD/app/bin/hook.js -------------------------------------------------------------------------------- /app/config/config.ini.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horryruo/multi-bot/HEAD/app/config/config.ini.example -------------------------------------------------------------------------------- /app/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horryruo/multi-bot/HEAD/app/utils/__init__.py -------------------------------------------------------------------------------- /app/utils/cloudflare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horryruo/multi-bot/HEAD/app/utils/cloudflare.py -------------------------------------------------------------------------------- /app/utils/dmm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horryruo/multi-bot/HEAD/app/utils/dmm.py -------------------------------------------------------------------------------- /app/utils/faleno.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horryruo/multi-bot/HEAD/app/utils/faleno.py -------------------------------------------------------------------------------- /app/utils/func_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horryruo/multi-bot/HEAD/app/utils/func_handler.py -------------------------------------------------------------------------------- /app/utils/func_requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horryruo/multi-bot/HEAD/app/utils/func_requests.py -------------------------------------------------------------------------------- /app/utils/get_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horryruo/multi-bot/HEAD/app/utils/get_update.py -------------------------------------------------------------------------------- /app/utils/identify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horryruo/multi-bot/HEAD/app/utils/identify.py -------------------------------------------------------------------------------- /app/utils/jav_thread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horryruo/multi-bot/HEAD/app/utils/jav_thread.py -------------------------------------------------------------------------------- /app/utils/magnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horryruo/multi-bot/HEAD/app/utils/magnet.py -------------------------------------------------------------------------------- /app/utils/monthly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horryruo/multi-bot/HEAD/app/utils/monthly.py -------------------------------------------------------------------------------- /app/utils/playerlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horryruo/multi-bot/HEAD/app/utils/playerlist.py -------------------------------------------------------------------------------- /app/utils/shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horryruo/multi-bot/HEAD/app/utils/shell.py -------------------------------------------------------------------------------- /app/utils/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horryruo/multi-bot/HEAD/app/utils/task.py -------------------------------------------------------------------------------- /app/utils/templates/cid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horryruo/multi-bot/HEAD/app/utils/templates/cid.md -------------------------------------------------------------------------------- /app/utils/templates/face_girl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horryruo/multi-bot/HEAD/app/utils/templates/face_girl.md -------------------------------------------------------------------------------- /app/utils/templates/faleno.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horryruo/multi-bot/HEAD/app/utils/templates/faleno.md -------------------------------------------------------------------------------- /app/utils/templates/faleno_actress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horryruo/multi-bot/HEAD/app/utils/templates/faleno_actress.md -------------------------------------------------------------------------------- /app/utils/templates/faleno_work.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horryruo/multi-bot/HEAD/app/utils/templates/faleno_work.md -------------------------------------------------------------------------------- /app/utils/templates/javmost.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horryruo/multi-bot/HEAD/app/utils/templates/javmost.md -------------------------------------------------------------------------------- /app/utils/templates/magnet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horryruo/multi-bot/HEAD/app/utils/templates/magnet.md -------------------------------------------------------------------------------- /app/utils/templates/search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horryruo/multi-bot/HEAD/app/utils/templates/search.md -------------------------------------------------------------------------------- /app/utils/templates/searchall.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horryruo/multi-bot/HEAD/app/utils/templates/searchall.md -------------------------------------------------------------------------------- /mybot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horryruo/multi-bot/HEAD/mybot.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horryruo/multi-bot/HEAD/requirements.txt -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | chmod -R 777 /bot 3 | python mybot.py --------------------------------------------------------------------------------