├── .env ├── .gitattributes ├── .github └── workflows │ ├── build_docs.yml │ └── package.yml ├── .gitignore ├── .vscode └── launch.json ├── ComWeChatBotClient.code-workspace ├── LICENSE ├── README.md ├── depends ├── CWeChatRobot.exe ├── DWeChatRobot.dll ├── install.bat └── uninstall.bat ├── docs ├── .vuepress │ ├── config.ts │ ├── public │ │ └── image │ │ │ ├── logo.gif │ │ │ └── logo.png │ └── styles │ │ └── config.scss ├── README.md ├── action │ ├── README.md │ ├── expand.md │ ├── file.md │ ├── group.md │ ├── message.md │ ├── meta.md │ └── private.md ├── event │ ├── README.md │ ├── message.md │ ├── meta.md │ ├── notice.md │ └── request.md ├── guide │ └── README.md └── message │ └── README.md ├── main.py ├── package.json ├── requirements.txt └── wechatbot_client ├── __init__.py ├── action_manager ├── __init__.py ├── check.py ├── file_router.py ├── manager.py └── model.py ├── com_wechat ├── __init__.py ├── com_wechat.py ├── message.py ├── model.py └── type.py ├── config.py ├── consts.py ├── driver ├── __init__.py ├── base.py ├── driver.py └── model.py ├── exception.py ├── file_manager ├── __init__.py ├── manager.py └── model.py ├── log.py ├── onebot12 ├── __init__.py ├── base_message.py ├── event.py ├── face.py └── message.py ├── scheduler.py ├── startup.py ├── typing.py ├── utils.py └── wechat ├── __init__.py ├── adapter.py ├── utils.py └── wechat.py /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustUndertaker/ComWeChatBotClient/HEAD/.env -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustUndertaker/ComWeChatBotClient/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build_docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustUndertaker/ComWeChatBotClient/HEAD/.github/workflows/build_docs.yml -------------------------------------------------------------------------------- /.github/workflows/package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustUndertaker/ComWeChatBotClient/HEAD/.github/workflows/package.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustUndertaker/ComWeChatBotClient/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustUndertaker/ComWeChatBotClient/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /ComWeChatBotClient.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustUndertaker/ComWeChatBotClient/HEAD/ComWeChatBotClient.code-workspace -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustUndertaker/ComWeChatBotClient/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustUndertaker/ComWeChatBotClient/HEAD/README.md -------------------------------------------------------------------------------- /depends/CWeChatRobot.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustUndertaker/ComWeChatBotClient/HEAD/depends/CWeChatRobot.exe -------------------------------------------------------------------------------- /depends/DWeChatRobot.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustUndertaker/ComWeChatBotClient/HEAD/depends/DWeChatRobot.dll -------------------------------------------------------------------------------- /depends/install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustUndertaker/ComWeChatBotClient/HEAD/depends/install.bat -------------------------------------------------------------------------------- /depends/uninstall.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustUndertaker/ComWeChatBotClient/HEAD/depends/uninstall.bat -------------------------------------------------------------------------------- /docs/.vuepress/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustUndertaker/ComWeChatBotClient/HEAD/docs/.vuepress/config.ts -------------------------------------------------------------------------------- /docs/.vuepress/public/image/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustUndertaker/ComWeChatBotClient/HEAD/docs/.vuepress/public/image/logo.gif -------------------------------------------------------------------------------- /docs/.vuepress/public/image/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustUndertaker/ComWeChatBotClient/HEAD/docs/.vuepress/public/image/logo.png -------------------------------------------------------------------------------- /docs/.vuepress/styles/config.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustUndertaker/ComWeChatBotClient/HEAD/docs/.vuepress/styles/config.scss -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustUndertaker/ComWeChatBotClient/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/action/README.md: -------------------------------------------------------------------------------- 1 | # 动作 2 | -------------------------------------------------------------------------------- /docs/action/expand.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustUndertaker/ComWeChatBotClient/HEAD/docs/action/expand.md -------------------------------------------------------------------------------- /docs/action/file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustUndertaker/ComWeChatBotClient/HEAD/docs/action/file.md -------------------------------------------------------------------------------- /docs/action/group.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustUndertaker/ComWeChatBotClient/HEAD/docs/action/group.md -------------------------------------------------------------------------------- /docs/action/message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustUndertaker/ComWeChatBotClient/HEAD/docs/action/message.md -------------------------------------------------------------------------------- /docs/action/meta.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustUndertaker/ComWeChatBotClient/HEAD/docs/action/meta.md -------------------------------------------------------------------------------- /docs/action/private.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustUndertaker/ComWeChatBotClient/HEAD/docs/action/private.md -------------------------------------------------------------------------------- /docs/event/README.md: -------------------------------------------------------------------------------- 1 | # 事件 2 | -------------------------------------------------------------------------------- /docs/event/message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustUndertaker/ComWeChatBotClient/HEAD/docs/event/message.md -------------------------------------------------------------------------------- /docs/event/meta.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustUndertaker/ComWeChatBotClient/HEAD/docs/event/meta.md -------------------------------------------------------------------------------- /docs/event/notice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustUndertaker/ComWeChatBotClient/HEAD/docs/event/notice.md -------------------------------------------------------------------------------- /docs/event/request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustUndertaker/ComWeChatBotClient/HEAD/docs/event/request.md -------------------------------------------------------------------------------- /docs/guide/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustUndertaker/ComWeChatBotClient/HEAD/docs/guide/README.md -------------------------------------------------------------------------------- /docs/message/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustUndertaker/ComWeChatBotClient/HEAD/docs/message/README.md -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustUndertaker/ComWeChatBotClient/HEAD/main.py -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustUndertaker/ComWeChatBotClient/HEAD/package.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustUndertaker/ComWeChatBotClient/HEAD/requirements.txt -------------------------------------------------------------------------------- /wechatbot_client/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustUndertaker/ComWeChatBotClient/HEAD/wechatbot_client/__init__.py -------------------------------------------------------------------------------- /wechatbot_client/action_manager/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustUndertaker/ComWeChatBotClient/HEAD/wechatbot_client/action_manager/__init__.py -------------------------------------------------------------------------------- /wechatbot_client/action_manager/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustUndertaker/ComWeChatBotClient/HEAD/wechatbot_client/action_manager/check.py -------------------------------------------------------------------------------- /wechatbot_client/action_manager/file_router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustUndertaker/ComWeChatBotClient/HEAD/wechatbot_client/action_manager/file_router.py -------------------------------------------------------------------------------- /wechatbot_client/action_manager/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustUndertaker/ComWeChatBotClient/HEAD/wechatbot_client/action_manager/manager.py -------------------------------------------------------------------------------- /wechatbot_client/action_manager/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustUndertaker/ComWeChatBotClient/HEAD/wechatbot_client/action_manager/model.py -------------------------------------------------------------------------------- /wechatbot_client/com_wechat/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustUndertaker/ComWeChatBotClient/HEAD/wechatbot_client/com_wechat/__init__.py -------------------------------------------------------------------------------- /wechatbot_client/com_wechat/com_wechat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustUndertaker/ComWeChatBotClient/HEAD/wechatbot_client/com_wechat/com_wechat.py -------------------------------------------------------------------------------- /wechatbot_client/com_wechat/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustUndertaker/ComWeChatBotClient/HEAD/wechatbot_client/com_wechat/message.py -------------------------------------------------------------------------------- /wechatbot_client/com_wechat/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustUndertaker/ComWeChatBotClient/HEAD/wechatbot_client/com_wechat/model.py -------------------------------------------------------------------------------- /wechatbot_client/com_wechat/type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustUndertaker/ComWeChatBotClient/HEAD/wechatbot_client/com_wechat/type.py -------------------------------------------------------------------------------- /wechatbot_client/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustUndertaker/ComWeChatBotClient/HEAD/wechatbot_client/config.py -------------------------------------------------------------------------------- /wechatbot_client/consts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustUndertaker/ComWeChatBotClient/HEAD/wechatbot_client/consts.py -------------------------------------------------------------------------------- /wechatbot_client/driver/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustUndertaker/ComWeChatBotClient/HEAD/wechatbot_client/driver/__init__.py -------------------------------------------------------------------------------- /wechatbot_client/driver/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustUndertaker/ComWeChatBotClient/HEAD/wechatbot_client/driver/base.py -------------------------------------------------------------------------------- /wechatbot_client/driver/driver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustUndertaker/ComWeChatBotClient/HEAD/wechatbot_client/driver/driver.py -------------------------------------------------------------------------------- /wechatbot_client/driver/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustUndertaker/ComWeChatBotClient/HEAD/wechatbot_client/driver/model.py -------------------------------------------------------------------------------- /wechatbot_client/exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustUndertaker/ComWeChatBotClient/HEAD/wechatbot_client/exception.py -------------------------------------------------------------------------------- /wechatbot_client/file_manager/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustUndertaker/ComWeChatBotClient/HEAD/wechatbot_client/file_manager/__init__.py -------------------------------------------------------------------------------- /wechatbot_client/file_manager/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustUndertaker/ComWeChatBotClient/HEAD/wechatbot_client/file_manager/manager.py -------------------------------------------------------------------------------- /wechatbot_client/file_manager/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustUndertaker/ComWeChatBotClient/HEAD/wechatbot_client/file_manager/model.py -------------------------------------------------------------------------------- /wechatbot_client/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustUndertaker/ComWeChatBotClient/HEAD/wechatbot_client/log.py -------------------------------------------------------------------------------- /wechatbot_client/onebot12/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustUndertaker/ComWeChatBotClient/HEAD/wechatbot_client/onebot12/__init__.py -------------------------------------------------------------------------------- /wechatbot_client/onebot12/base_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustUndertaker/ComWeChatBotClient/HEAD/wechatbot_client/onebot12/base_message.py -------------------------------------------------------------------------------- /wechatbot_client/onebot12/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustUndertaker/ComWeChatBotClient/HEAD/wechatbot_client/onebot12/event.py -------------------------------------------------------------------------------- /wechatbot_client/onebot12/face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustUndertaker/ComWeChatBotClient/HEAD/wechatbot_client/onebot12/face.py -------------------------------------------------------------------------------- /wechatbot_client/onebot12/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustUndertaker/ComWeChatBotClient/HEAD/wechatbot_client/onebot12/message.py -------------------------------------------------------------------------------- /wechatbot_client/scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustUndertaker/ComWeChatBotClient/HEAD/wechatbot_client/scheduler.py -------------------------------------------------------------------------------- /wechatbot_client/startup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustUndertaker/ComWeChatBotClient/HEAD/wechatbot_client/startup.py -------------------------------------------------------------------------------- /wechatbot_client/typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustUndertaker/ComWeChatBotClient/HEAD/wechatbot_client/typing.py -------------------------------------------------------------------------------- /wechatbot_client/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustUndertaker/ComWeChatBotClient/HEAD/wechatbot_client/utils.py -------------------------------------------------------------------------------- /wechatbot_client/wechat/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustUndertaker/ComWeChatBotClient/HEAD/wechatbot_client/wechat/__init__.py -------------------------------------------------------------------------------- /wechatbot_client/wechat/adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustUndertaker/ComWeChatBotClient/HEAD/wechatbot_client/wechat/adapter.py -------------------------------------------------------------------------------- /wechatbot_client/wechat/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustUndertaker/ComWeChatBotClient/HEAD/wechatbot_client/wechat/utils.py -------------------------------------------------------------------------------- /wechatbot_client/wechat/wechat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustUndertaker/ComWeChatBotClient/HEAD/wechatbot_client/wechat/wechat.py --------------------------------------------------------------------------------