├── .gitignore ├── LICENSE ├── README.md ├── requirements.txt └── shebot ├── _interact.py ├── _res.py ├── _util.py ├── conhead ├── __init__.py ├── api模式添加头示意图.png ├── config.py ├── data │ ├── head │ │ ├── 1 │ │ │ ├── 1.png │ │ │ └── dat.json │ │ └── 2 │ │ │ ├── 2.png │ │ │ └── dat.json │ ├── lbpcascade_animeface.xml │ ├── 接头失败.png │ ├── 没找到头.png │ ├── 猫猫头_0.png │ ├── 猫猫头_1.png │ ├── 猫猫头_2.png │ ├── 猫猫头_3.png │ ├── 猫猫头_4.png │ ├── 猫猫头_5.png │ └── 猫猫头_6.png ├── data_source.py ├── opencv.py ├── output │ └── 2020-12-13-161726.png └── readme.txt ├── infoPush ├── __init__.py ├── latest_data.json └── readme.txt ├── interaction_handler.py ├── liveNotice ├── __init__.py ├── readme.txt └── subs.json ├── res └── image │ ├── cache │ └── zhbp │ ├── nr18_setu │ └── 25117805 │ ├── r18_setu │ └── 60389386 │ └── search_setu │ └── 67329343 ├── roullette └── __init__.py ├── rua ├── __init__.py ├── data │ ├── hand-1.png │ ├── hand-2.png │ ├── hand-3.png │ ├── hand-4.png │ └── hand-5.png └── data_source.py ├── setu ├── __init__.py ├── api.py ├── config.py ├── data_source.py ├── readme.txt └── setu_config.json └── webServiceManager ├── __init__.py ├── data_source.py ├── readme.txt ├── templates ├── by_group.html ├── by_service.html ├── group_services.html ├── login.html ├── main.html └── service_groups.html └── view.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/plugins-for-Hoshino/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/plugins-for-Hoshino/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | filetype -------------------------------------------------------------------------------- /shebot/_interact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/plugins-for-Hoshino/HEAD/shebot/_interact.py -------------------------------------------------------------------------------- /shebot/_res.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/plugins-for-Hoshino/HEAD/shebot/_res.py -------------------------------------------------------------------------------- /shebot/_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/plugins-for-Hoshino/HEAD/shebot/_util.py -------------------------------------------------------------------------------- /shebot/conhead/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/plugins-for-Hoshino/HEAD/shebot/conhead/__init__.py -------------------------------------------------------------------------------- /shebot/conhead/api模式添加头示意图.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/plugins-for-Hoshino/HEAD/shebot/conhead/api模式添加头示意图.png -------------------------------------------------------------------------------- /shebot/conhead/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/plugins-for-Hoshino/HEAD/shebot/conhead/config.py -------------------------------------------------------------------------------- /shebot/conhead/data/head/1/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/plugins-for-Hoshino/HEAD/shebot/conhead/data/head/1/1.png -------------------------------------------------------------------------------- /shebot/conhead/data/head/1/dat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/plugins-for-Hoshino/HEAD/shebot/conhead/data/head/1/dat.json -------------------------------------------------------------------------------- /shebot/conhead/data/head/2/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/plugins-for-Hoshino/HEAD/shebot/conhead/data/head/2/2.png -------------------------------------------------------------------------------- /shebot/conhead/data/head/2/dat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/plugins-for-Hoshino/HEAD/shebot/conhead/data/head/2/dat.json -------------------------------------------------------------------------------- /shebot/conhead/data/lbpcascade_animeface.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/plugins-for-Hoshino/HEAD/shebot/conhead/data/lbpcascade_animeface.xml -------------------------------------------------------------------------------- /shebot/conhead/data/接头失败.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/plugins-for-Hoshino/HEAD/shebot/conhead/data/接头失败.png -------------------------------------------------------------------------------- /shebot/conhead/data/没找到头.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/plugins-for-Hoshino/HEAD/shebot/conhead/data/没找到头.png -------------------------------------------------------------------------------- /shebot/conhead/data/猫猫头_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/plugins-for-Hoshino/HEAD/shebot/conhead/data/猫猫头_0.png -------------------------------------------------------------------------------- /shebot/conhead/data/猫猫头_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/plugins-for-Hoshino/HEAD/shebot/conhead/data/猫猫头_1.png -------------------------------------------------------------------------------- /shebot/conhead/data/猫猫头_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/plugins-for-Hoshino/HEAD/shebot/conhead/data/猫猫头_2.png -------------------------------------------------------------------------------- /shebot/conhead/data/猫猫头_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/plugins-for-Hoshino/HEAD/shebot/conhead/data/猫猫头_3.png -------------------------------------------------------------------------------- /shebot/conhead/data/猫猫头_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/plugins-for-Hoshino/HEAD/shebot/conhead/data/猫猫头_4.png -------------------------------------------------------------------------------- /shebot/conhead/data/猫猫头_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/plugins-for-Hoshino/HEAD/shebot/conhead/data/猫猫头_5.png -------------------------------------------------------------------------------- /shebot/conhead/data/猫猫头_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/plugins-for-Hoshino/HEAD/shebot/conhead/data/猫猫头_6.png -------------------------------------------------------------------------------- /shebot/conhead/data_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/plugins-for-Hoshino/HEAD/shebot/conhead/data_source.py -------------------------------------------------------------------------------- /shebot/conhead/opencv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/plugins-for-Hoshino/HEAD/shebot/conhead/opencv.py -------------------------------------------------------------------------------- /shebot/conhead/output/2020-12-13-161726.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/plugins-for-Hoshino/HEAD/shebot/conhead/output/2020-12-13-161726.png -------------------------------------------------------------------------------- /shebot/conhead/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/plugins-for-Hoshino/HEAD/shebot/conhead/readme.txt -------------------------------------------------------------------------------- /shebot/infoPush/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/plugins-for-Hoshino/HEAD/shebot/infoPush/__init__.py -------------------------------------------------------------------------------- /shebot/infoPush/latest_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/plugins-for-Hoshino/HEAD/shebot/infoPush/latest_data.json -------------------------------------------------------------------------------- /shebot/infoPush/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/plugins-for-Hoshino/HEAD/shebot/infoPush/readme.txt -------------------------------------------------------------------------------- /shebot/interaction_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/plugins-for-Hoshino/HEAD/shebot/interaction_handler.py -------------------------------------------------------------------------------- /shebot/liveNotice/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/plugins-for-Hoshino/HEAD/shebot/liveNotice/__init__.py -------------------------------------------------------------------------------- /shebot/liveNotice/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/plugins-for-Hoshino/HEAD/shebot/liveNotice/readme.txt -------------------------------------------------------------------------------- /shebot/liveNotice/subs.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /shebot/res/image/cache/zhbp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shebot/res/image/nr18_setu/25117805: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/plugins-for-Hoshino/HEAD/shebot/res/image/nr18_setu/25117805 -------------------------------------------------------------------------------- /shebot/res/image/r18_setu/60389386: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/plugins-for-Hoshino/HEAD/shebot/res/image/r18_setu/60389386 -------------------------------------------------------------------------------- /shebot/res/image/search_setu/67329343: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/plugins-for-Hoshino/HEAD/shebot/res/image/search_setu/67329343 -------------------------------------------------------------------------------- /shebot/roullette/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/plugins-for-Hoshino/HEAD/shebot/roullette/__init__.py -------------------------------------------------------------------------------- /shebot/rua/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/plugins-for-Hoshino/HEAD/shebot/rua/__init__.py -------------------------------------------------------------------------------- /shebot/rua/data/hand-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/plugins-for-Hoshino/HEAD/shebot/rua/data/hand-1.png -------------------------------------------------------------------------------- /shebot/rua/data/hand-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/plugins-for-Hoshino/HEAD/shebot/rua/data/hand-2.png -------------------------------------------------------------------------------- /shebot/rua/data/hand-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/plugins-for-Hoshino/HEAD/shebot/rua/data/hand-3.png -------------------------------------------------------------------------------- /shebot/rua/data/hand-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/plugins-for-Hoshino/HEAD/shebot/rua/data/hand-4.png -------------------------------------------------------------------------------- /shebot/rua/data/hand-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/plugins-for-Hoshino/HEAD/shebot/rua/data/hand-5.png -------------------------------------------------------------------------------- /shebot/rua/data_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/plugins-for-Hoshino/HEAD/shebot/rua/data_source.py -------------------------------------------------------------------------------- /shebot/setu/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/plugins-for-Hoshino/HEAD/shebot/setu/__init__.py -------------------------------------------------------------------------------- /shebot/setu/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/plugins-for-Hoshino/HEAD/shebot/setu/api.py -------------------------------------------------------------------------------- /shebot/setu/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/plugins-for-Hoshino/HEAD/shebot/setu/config.py -------------------------------------------------------------------------------- /shebot/setu/data_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/plugins-for-Hoshino/HEAD/shebot/setu/data_source.py -------------------------------------------------------------------------------- /shebot/setu/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/plugins-for-Hoshino/HEAD/shebot/setu/readme.txt -------------------------------------------------------------------------------- /shebot/setu/setu_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "r18_groups": [] 3 | } -------------------------------------------------------------------------------- /shebot/webServiceManager/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/plugins-for-Hoshino/HEAD/shebot/webServiceManager/__init__.py -------------------------------------------------------------------------------- /shebot/webServiceManager/data_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/plugins-for-Hoshino/HEAD/shebot/webServiceManager/data_source.py -------------------------------------------------------------------------------- /shebot/webServiceManager/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/plugins-for-Hoshino/HEAD/shebot/webServiceManager/readme.txt -------------------------------------------------------------------------------- /shebot/webServiceManager/templates/by_group.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/plugins-for-Hoshino/HEAD/shebot/webServiceManager/templates/by_group.html -------------------------------------------------------------------------------- /shebot/webServiceManager/templates/by_service.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/plugins-for-Hoshino/HEAD/shebot/webServiceManager/templates/by_service.html -------------------------------------------------------------------------------- /shebot/webServiceManager/templates/group_services.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/plugins-for-Hoshino/HEAD/shebot/webServiceManager/templates/group_services.html -------------------------------------------------------------------------------- /shebot/webServiceManager/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/plugins-for-Hoshino/HEAD/shebot/webServiceManager/templates/login.html -------------------------------------------------------------------------------- /shebot/webServiceManager/templates/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/plugins-for-Hoshino/HEAD/shebot/webServiceManager/templates/main.html -------------------------------------------------------------------------------- /shebot/webServiceManager/templates/service_groups.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/plugins-for-Hoshino/HEAD/shebot/webServiceManager/templates/service_groups.html -------------------------------------------------------------------------------- /shebot/webServiceManager/view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/plugins-for-Hoshino/HEAD/shebot/webServiceManager/view.py --------------------------------------------------------------------------------