├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.md │ ├── feature-request.md │ ├── others.md │ └── question.md └── workflows │ ├── CI.yml │ ├── docker-build.yml │ └── windows-exe-build.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── __init__.py ├── demo ├── demo1.png ├── demo2.png ├── demo3.png └── demo4.png ├── docs └── README.txt ├── scripts ├── install-docker.sh ├── pypy.Dockerfile ├── slim.Dockerfile ├── yobot-gocqhttp-auto.ps1 └── yobot-gocqhttp-auto.sh └── src └── client ├── README.md ├── logo.ico ├── main.py ├── main.spec ├── main_test.py ├── nonebot_plugin.py ├── packedfiles ├── default_config.json └── default_pool.json ├── public ├── libs │ ├── axios@0.19.2 │ │ └── dist │ │ │ └── axios.min.js │ ├── canvas-nest.js@1.0.1 │ │ └── dist │ │ │ └── canvas-nest.min.js │ ├── echarts@4.7.0 │ │ └── dist │ │ │ └── echarts.min.js │ ├── element-ui@2.13.0 │ │ └── lib │ │ │ ├── index.js │ │ │ └── theme-chalk │ │ │ └── index.css │ ├── github-buttons@2.7.0 │ │ └── dist │ │ │ └── buttons.min.js │ ├── github-markdown-css@3.0.1 │ │ └── github-markdown.css │ └── vue@2.6.11 │ │ └── dist │ │ └── vue.min.js ├── static │ ├── .gitignore │ ├── README.md │ ├── admin │ │ ├── groups.js │ │ ├── pool-setting.js │ │ ├── setting.js │ │ └── users.js │ ├── chara_marks.png │ ├── clan │ │ ├── panel.js │ │ ├── progress.js │ │ ├── setting.js │ │ ├── statistics.js │ │ ├── statistics │ │ │ ├── deviation.png │ │ │ ├── many.png │ │ │ ├── order.png │ │ │ ├── pie.png │ │ │ └── statistics2.js │ │ ├── subscribers.js │ │ └── user.js │ ├── gacha.js │ ├── gongan.png │ ├── marionette.js │ ├── password.js │ └── small.ico └── template │ ├── 404.html │ ├── about.html │ ├── admin │ ├── groups.html │ ├── pool-setting.html │ ├── setting.html │ └── users.html │ ├── clan │ ├── panel.html │ ├── progress.html │ ├── setting.html │ ├── statistics.html │ ├── statistics │ │ ├── statistics1.html │ │ └── statistics2.html │ ├── subscribers.html │ ├── unauthorized.html │ └── user.html │ ├── collection.html │ ├── gacha.html │ ├── help.html │ ├── homepage.html │ ├── jjc-solution.html │ ├── login-code.html │ ├── login.html │ ├── manual.html │ ├── marionette.html │ ├── password.html │ ├── unauthorized.html │ ├── user-info.html │ └── user.html ├── requirements.txt ├── ybplugins ├── __init__.py ├── calender.py ├── clan_battle │ ├── __init__.py │ ├── battle.py │ ├── exception.py │ ├── typing.py │ └── util.py ├── custom.py ├── gacha.py ├── group_leave.py ├── homepage.py ├── jjc_consult.py ├── login.py ├── marionette.py ├── miner.py ├── push_news.py ├── settings.py ├── spider │ ├── README.md │ ├── __init__.py │ ├── base_spider.py │ ├── official_site_cn.py │ └── official_site_tw.py ├── switcher.py ├── templating.py ├── updater.py ├── web_util.py ├── ybdata.py ├── yobot_exceptions.py └── yobot_msg.py └── yobot.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/.github/ISSUE_TEMPLATE/feature-request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/others.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/.github/ISSUE_TEMPLATE/others.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /.github/workflows/CI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/.github/workflows/CI.yml -------------------------------------------------------------------------------- /.github/workflows/docker-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/.github/workflows/docker-build.yml -------------------------------------------------------------------------------- /.github/workflows/windows-exe-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/.github/workflows/windows-exe-build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # 贡献项目 2 | 3 | 错误与问题修复:直接发起 pull request 4 | 5 | 增加功能或特性变更:先在 [issue](https://github.com/pcrbot/yobot/issues) 中或在交流群中讨论 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | from .src.client import nonebot_plugin 2 | -------------------------------------------------------------------------------- /demo/demo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/demo/demo1.png -------------------------------------------------------------------------------- /demo/demo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/demo/demo2.png -------------------------------------------------------------------------------- /demo/demo3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/demo/demo3.png -------------------------------------------------------------------------------- /demo/demo4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/demo/demo4.png -------------------------------------------------------------------------------- /docs/README.txt: -------------------------------------------------------------------------------- 1 | 文档移动至 https://github.com/pcrbot/yobot-docs -------------------------------------------------------------------------------- /scripts/install-docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/scripts/install-docker.sh -------------------------------------------------------------------------------- /scripts/pypy.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/scripts/pypy.Dockerfile -------------------------------------------------------------------------------- /scripts/slim.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/scripts/slim.Dockerfile -------------------------------------------------------------------------------- /scripts/yobot-gocqhttp-auto.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/scripts/yobot-gocqhttp-auto.ps1 -------------------------------------------------------------------------------- /scripts/yobot-gocqhttp-auto.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/scripts/yobot-gocqhttp-auto.sh -------------------------------------------------------------------------------- /src/client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/README.md -------------------------------------------------------------------------------- /src/client/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/logo.ico -------------------------------------------------------------------------------- /src/client/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/main.py -------------------------------------------------------------------------------- /src/client/main.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/main.spec -------------------------------------------------------------------------------- /src/client/main_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/main_test.py -------------------------------------------------------------------------------- /src/client/nonebot_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/nonebot_plugin.py -------------------------------------------------------------------------------- /src/client/packedfiles/default_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/packedfiles/default_config.json -------------------------------------------------------------------------------- /src/client/packedfiles/default_pool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/packedfiles/default_pool.json -------------------------------------------------------------------------------- /src/client/public/libs/axios@0.19.2/dist/axios.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/public/libs/axios@0.19.2/dist/axios.min.js -------------------------------------------------------------------------------- /src/client/public/libs/canvas-nest.js@1.0.1/dist/canvas-nest.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/public/libs/canvas-nest.js@1.0.1/dist/canvas-nest.min.js -------------------------------------------------------------------------------- /src/client/public/libs/echarts@4.7.0/dist/echarts.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/public/libs/echarts@4.7.0/dist/echarts.min.js -------------------------------------------------------------------------------- /src/client/public/libs/element-ui@2.13.0/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/public/libs/element-ui@2.13.0/lib/index.js -------------------------------------------------------------------------------- /src/client/public/libs/element-ui@2.13.0/lib/theme-chalk/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/public/libs/element-ui@2.13.0/lib/theme-chalk/index.css -------------------------------------------------------------------------------- /src/client/public/libs/github-buttons@2.7.0/dist/buttons.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/public/libs/github-buttons@2.7.0/dist/buttons.min.js -------------------------------------------------------------------------------- /src/client/public/libs/github-markdown-css@3.0.1/github-markdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/public/libs/github-markdown-css@3.0.1/github-markdown.css -------------------------------------------------------------------------------- /src/client/public/libs/vue@2.6.11/dist/vue.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/public/libs/vue@2.6.11/dist/vue.min.js -------------------------------------------------------------------------------- /src/client/public/static/.gitignore: -------------------------------------------------------------------------------- 1 | *.gz -------------------------------------------------------------------------------- /src/client/public/static/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/public/static/README.md -------------------------------------------------------------------------------- /src/client/public/static/admin/groups.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/public/static/admin/groups.js -------------------------------------------------------------------------------- /src/client/public/static/admin/pool-setting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/public/static/admin/pool-setting.js -------------------------------------------------------------------------------- /src/client/public/static/admin/setting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/public/static/admin/setting.js -------------------------------------------------------------------------------- /src/client/public/static/admin/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/public/static/admin/users.js -------------------------------------------------------------------------------- /src/client/public/static/chara_marks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/public/static/chara_marks.png -------------------------------------------------------------------------------- /src/client/public/static/clan/panel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/public/static/clan/panel.js -------------------------------------------------------------------------------- /src/client/public/static/clan/progress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/public/static/clan/progress.js -------------------------------------------------------------------------------- /src/client/public/static/clan/setting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/public/static/clan/setting.js -------------------------------------------------------------------------------- /src/client/public/static/clan/statistics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/public/static/clan/statistics.js -------------------------------------------------------------------------------- /src/client/public/static/clan/statistics/deviation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/public/static/clan/statistics/deviation.png -------------------------------------------------------------------------------- /src/client/public/static/clan/statistics/many.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/public/static/clan/statistics/many.png -------------------------------------------------------------------------------- /src/client/public/static/clan/statistics/order.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/public/static/clan/statistics/order.png -------------------------------------------------------------------------------- /src/client/public/static/clan/statistics/pie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/public/static/clan/statistics/pie.png -------------------------------------------------------------------------------- /src/client/public/static/clan/statistics/statistics2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/public/static/clan/statistics/statistics2.js -------------------------------------------------------------------------------- /src/client/public/static/clan/subscribers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/public/static/clan/subscribers.js -------------------------------------------------------------------------------- /src/client/public/static/clan/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/public/static/clan/user.js -------------------------------------------------------------------------------- /src/client/public/static/gacha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/public/static/gacha.js -------------------------------------------------------------------------------- /src/client/public/static/gongan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/public/static/gongan.png -------------------------------------------------------------------------------- /src/client/public/static/marionette.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/public/static/marionette.js -------------------------------------------------------------------------------- /src/client/public/static/password.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/public/static/password.js -------------------------------------------------------------------------------- /src/client/public/static/small.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/public/static/small.ico -------------------------------------------------------------------------------- /src/client/public/template/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/public/template/404.html -------------------------------------------------------------------------------- /src/client/public/template/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/public/template/about.html -------------------------------------------------------------------------------- /src/client/public/template/admin/groups.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/public/template/admin/groups.html -------------------------------------------------------------------------------- /src/client/public/template/admin/pool-setting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/public/template/admin/pool-setting.html -------------------------------------------------------------------------------- /src/client/public/template/admin/setting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/public/template/admin/setting.html -------------------------------------------------------------------------------- /src/client/public/template/admin/users.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/public/template/admin/users.html -------------------------------------------------------------------------------- /src/client/public/template/clan/panel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/public/template/clan/panel.html -------------------------------------------------------------------------------- /src/client/public/template/clan/progress.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/public/template/clan/progress.html -------------------------------------------------------------------------------- /src/client/public/template/clan/setting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/public/template/clan/setting.html -------------------------------------------------------------------------------- /src/client/public/template/clan/statistics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/public/template/clan/statistics.html -------------------------------------------------------------------------------- /src/client/public/template/clan/statistics/statistics1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/public/template/clan/statistics/statistics1.html -------------------------------------------------------------------------------- /src/client/public/template/clan/statistics/statistics2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/public/template/clan/statistics/statistics2.html -------------------------------------------------------------------------------- /src/client/public/template/clan/subscribers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/public/template/clan/subscribers.html -------------------------------------------------------------------------------- /src/client/public/template/clan/unauthorized.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/public/template/clan/unauthorized.html -------------------------------------------------------------------------------- /src/client/public/template/clan/user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/public/template/clan/user.html -------------------------------------------------------------------------------- /src/client/public/template/collection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/public/template/collection.html -------------------------------------------------------------------------------- /src/client/public/template/gacha.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/public/template/gacha.html -------------------------------------------------------------------------------- /src/client/public/template/help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/public/template/help.html -------------------------------------------------------------------------------- /src/client/public/template/homepage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/public/template/homepage.html -------------------------------------------------------------------------------- /src/client/public/template/jjc-solution.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/public/template/jjc-solution.html -------------------------------------------------------------------------------- /src/client/public/template/login-code.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/public/template/login-code.html -------------------------------------------------------------------------------- /src/client/public/template/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/public/template/login.html -------------------------------------------------------------------------------- /src/client/public/template/manual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/public/template/manual.html -------------------------------------------------------------------------------- /src/client/public/template/marionette.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/public/template/marionette.html -------------------------------------------------------------------------------- /src/client/public/template/password.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/public/template/password.html -------------------------------------------------------------------------------- /src/client/public/template/unauthorized.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/public/template/unauthorized.html -------------------------------------------------------------------------------- /src/client/public/template/user-info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/public/template/user-info.html -------------------------------------------------------------------------------- /src/client/public/template/user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/public/template/user.html -------------------------------------------------------------------------------- /src/client/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/requirements.txt -------------------------------------------------------------------------------- /src/client/ybplugins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/ybplugins/__init__.py -------------------------------------------------------------------------------- /src/client/ybplugins/calender.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/ybplugins/calender.py -------------------------------------------------------------------------------- /src/client/ybplugins/clan_battle/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/ybplugins/clan_battle/__init__.py -------------------------------------------------------------------------------- /src/client/ybplugins/clan_battle/battle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/ybplugins/clan_battle/battle.py -------------------------------------------------------------------------------- /src/client/ybplugins/clan_battle/exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/ybplugins/clan_battle/exception.py -------------------------------------------------------------------------------- /src/client/ybplugins/clan_battle/typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/ybplugins/clan_battle/typing.py -------------------------------------------------------------------------------- /src/client/ybplugins/clan_battle/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/ybplugins/clan_battle/util.py -------------------------------------------------------------------------------- /src/client/ybplugins/custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/ybplugins/custom.py -------------------------------------------------------------------------------- /src/client/ybplugins/gacha.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/ybplugins/gacha.py -------------------------------------------------------------------------------- /src/client/ybplugins/group_leave.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/ybplugins/group_leave.py -------------------------------------------------------------------------------- /src/client/ybplugins/homepage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/ybplugins/homepage.py -------------------------------------------------------------------------------- /src/client/ybplugins/jjc_consult.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/ybplugins/jjc_consult.py -------------------------------------------------------------------------------- /src/client/ybplugins/login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/ybplugins/login.py -------------------------------------------------------------------------------- /src/client/ybplugins/marionette.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/ybplugins/marionette.py -------------------------------------------------------------------------------- /src/client/ybplugins/miner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/ybplugins/miner.py -------------------------------------------------------------------------------- /src/client/ybplugins/push_news.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/ybplugins/push_news.py -------------------------------------------------------------------------------- /src/client/ybplugins/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/ybplugins/settings.py -------------------------------------------------------------------------------- /src/client/ybplugins/spider/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/ybplugins/spider/README.md -------------------------------------------------------------------------------- /src/client/ybplugins/spider/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/ybplugins/spider/__init__.py -------------------------------------------------------------------------------- /src/client/ybplugins/spider/base_spider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/ybplugins/spider/base_spider.py -------------------------------------------------------------------------------- /src/client/ybplugins/spider/official_site_cn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/ybplugins/spider/official_site_cn.py -------------------------------------------------------------------------------- /src/client/ybplugins/spider/official_site_tw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/ybplugins/spider/official_site_tw.py -------------------------------------------------------------------------------- /src/client/ybplugins/switcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/ybplugins/switcher.py -------------------------------------------------------------------------------- /src/client/ybplugins/templating.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/ybplugins/templating.py -------------------------------------------------------------------------------- /src/client/ybplugins/updater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/ybplugins/updater.py -------------------------------------------------------------------------------- /src/client/ybplugins/web_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/ybplugins/web_util.py -------------------------------------------------------------------------------- /src/client/ybplugins/ybdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/ybplugins/ybdata.py -------------------------------------------------------------------------------- /src/client/ybplugins/yobot_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/ybplugins/yobot_exceptions.py -------------------------------------------------------------------------------- /src/client/ybplugins/yobot_msg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/ybplugins/yobot_msg.py -------------------------------------------------------------------------------- /src/client/yobot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjk12138/yobot/HEAD/src/client/yobot.py --------------------------------------------------------------------------------