├── .DS_Store ├── .gitignore ├── LICENSE ├── README.md ├── corpwechatbot ├── __about__.py ├── __init__.py ├── _sender.py ├── app.py ├── chatbot.py ├── command.py ├── config.py ├── error.py └── util.py ├── docs ├── changelog.md ├── features.md ├── img │ ├── app.png │ ├── app_card.png │ ├── app_file.png │ ├── app_image.png │ ├── app_markdown.png │ ├── app_msgsend.gif │ ├── app_news.png │ ├── app_video.png │ ├── app_voice.png │ ├── appchat_msg_send.png │ ├── bot.png │ ├── bot_at.png │ ├── bot_image.png │ ├── bot_markdown.png │ ├── bot_msgsend.gif │ ├── bot_news.png │ ├── callback_test.gif │ ├── get_mobile.png │ ├── get_partyid.png │ ├── get_tagid.png │ ├── get_userid.png │ ├── img.png │ ├── logo.png │ ├── mpnews-1.png │ ├── mpnews-2.png │ ├── sponsor.jpg │ ├── taskcard_example.gif │ ├── teminal_msgsend.gif │ ├── wechat_plugin.png │ └── work_mechanism.png ├── index.md ├── questions.md ├── quickstart.md └── 使用教程 │ ├── app_msg_send.md │ ├── appchat_msg_send.md │ ├── bot_msg_send.md │ ├── callback_configuration.md │ ├── index.md │ └── terminal_msg_send.md ├── mkdocs.yml ├── setup.py └── tests ├── data ├── test.amr ├── test.mp4 ├── test.png └── test.txt ├── test_app.py ├── test_appchat.py └── test_chatbot.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GentleCP/corpwechatbot/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GentleCP/corpwechatbot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GentleCP/corpwechatbot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GentleCP/corpwechatbot/HEAD/README.md -------------------------------------------------------------------------------- /corpwechatbot/__about__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GentleCP/corpwechatbot/HEAD/corpwechatbot/__about__.py -------------------------------------------------------------------------------- /corpwechatbot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GentleCP/corpwechatbot/HEAD/corpwechatbot/__init__.py -------------------------------------------------------------------------------- /corpwechatbot/_sender.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GentleCP/corpwechatbot/HEAD/corpwechatbot/_sender.py -------------------------------------------------------------------------------- /corpwechatbot/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GentleCP/corpwechatbot/HEAD/corpwechatbot/app.py -------------------------------------------------------------------------------- /corpwechatbot/chatbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GentleCP/corpwechatbot/HEAD/corpwechatbot/chatbot.py -------------------------------------------------------------------------------- /corpwechatbot/command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GentleCP/corpwechatbot/HEAD/corpwechatbot/command.py -------------------------------------------------------------------------------- /corpwechatbot/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GentleCP/corpwechatbot/HEAD/corpwechatbot/config.py -------------------------------------------------------------------------------- /corpwechatbot/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GentleCP/corpwechatbot/HEAD/corpwechatbot/error.py -------------------------------------------------------------------------------- /corpwechatbot/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GentleCP/corpwechatbot/HEAD/corpwechatbot/util.py -------------------------------------------------------------------------------- /docs/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GentleCP/corpwechatbot/HEAD/docs/changelog.md -------------------------------------------------------------------------------- /docs/features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GentleCP/corpwechatbot/HEAD/docs/features.md -------------------------------------------------------------------------------- /docs/img/app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GentleCP/corpwechatbot/HEAD/docs/img/app.png -------------------------------------------------------------------------------- /docs/img/app_card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GentleCP/corpwechatbot/HEAD/docs/img/app_card.png -------------------------------------------------------------------------------- /docs/img/app_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GentleCP/corpwechatbot/HEAD/docs/img/app_file.png -------------------------------------------------------------------------------- /docs/img/app_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GentleCP/corpwechatbot/HEAD/docs/img/app_image.png -------------------------------------------------------------------------------- /docs/img/app_markdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GentleCP/corpwechatbot/HEAD/docs/img/app_markdown.png -------------------------------------------------------------------------------- /docs/img/app_msgsend.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GentleCP/corpwechatbot/HEAD/docs/img/app_msgsend.gif -------------------------------------------------------------------------------- /docs/img/app_news.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GentleCP/corpwechatbot/HEAD/docs/img/app_news.png -------------------------------------------------------------------------------- /docs/img/app_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GentleCP/corpwechatbot/HEAD/docs/img/app_video.png -------------------------------------------------------------------------------- /docs/img/app_voice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GentleCP/corpwechatbot/HEAD/docs/img/app_voice.png -------------------------------------------------------------------------------- /docs/img/appchat_msg_send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GentleCP/corpwechatbot/HEAD/docs/img/appchat_msg_send.png -------------------------------------------------------------------------------- /docs/img/bot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GentleCP/corpwechatbot/HEAD/docs/img/bot.png -------------------------------------------------------------------------------- /docs/img/bot_at.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GentleCP/corpwechatbot/HEAD/docs/img/bot_at.png -------------------------------------------------------------------------------- /docs/img/bot_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GentleCP/corpwechatbot/HEAD/docs/img/bot_image.png -------------------------------------------------------------------------------- /docs/img/bot_markdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GentleCP/corpwechatbot/HEAD/docs/img/bot_markdown.png -------------------------------------------------------------------------------- /docs/img/bot_msgsend.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GentleCP/corpwechatbot/HEAD/docs/img/bot_msgsend.gif -------------------------------------------------------------------------------- /docs/img/bot_news.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GentleCP/corpwechatbot/HEAD/docs/img/bot_news.png -------------------------------------------------------------------------------- /docs/img/callback_test.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GentleCP/corpwechatbot/HEAD/docs/img/callback_test.gif -------------------------------------------------------------------------------- /docs/img/get_mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GentleCP/corpwechatbot/HEAD/docs/img/get_mobile.png -------------------------------------------------------------------------------- /docs/img/get_partyid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GentleCP/corpwechatbot/HEAD/docs/img/get_partyid.png -------------------------------------------------------------------------------- /docs/img/get_tagid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GentleCP/corpwechatbot/HEAD/docs/img/get_tagid.png -------------------------------------------------------------------------------- /docs/img/get_userid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GentleCP/corpwechatbot/HEAD/docs/img/get_userid.png -------------------------------------------------------------------------------- /docs/img/img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GentleCP/corpwechatbot/HEAD/docs/img/img.png -------------------------------------------------------------------------------- /docs/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GentleCP/corpwechatbot/HEAD/docs/img/logo.png -------------------------------------------------------------------------------- /docs/img/mpnews-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GentleCP/corpwechatbot/HEAD/docs/img/mpnews-1.png -------------------------------------------------------------------------------- /docs/img/mpnews-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GentleCP/corpwechatbot/HEAD/docs/img/mpnews-2.png -------------------------------------------------------------------------------- /docs/img/sponsor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GentleCP/corpwechatbot/HEAD/docs/img/sponsor.jpg -------------------------------------------------------------------------------- /docs/img/taskcard_example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GentleCP/corpwechatbot/HEAD/docs/img/taskcard_example.gif -------------------------------------------------------------------------------- /docs/img/teminal_msgsend.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GentleCP/corpwechatbot/HEAD/docs/img/teminal_msgsend.gif -------------------------------------------------------------------------------- /docs/img/wechat_plugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GentleCP/corpwechatbot/HEAD/docs/img/wechat_plugin.png -------------------------------------------------------------------------------- /docs/img/work_mechanism.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GentleCP/corpwechatbot/HEAD/docs/img/work_mechanism.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GentleCP/corpwechatbot/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/questions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GentleCP/corpwechatbot/HEAD/docs/questions.md -------------------------------------------------------------------------------- /docs/quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GentleCP/corpwechatbot/HEAD/docs/quickstart.md -------------------------------------------------------------------------------- /docs/使用教程/app_msg_send.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GentleCP/corpwechatbot/HEAD/docs/使用教程/app_msg_send.md -------------------------------------------------------------------------------- /docs/使用教程/appchat_msg_send.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GentleCP/corpwechatbot/HEAD/docs/使用教程/appchat_msg_send.md -------------------------------------------------------------------------------- /docs/使用教程/bot_msg_send.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GentleCP/corpwechatbot/HEAD/docs/使用教程/bot_msg_send.md -------------------------------------------------------------------------------- /docs/使用教程/callback_configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GentleCP/corpwechatbot/HEAD/docs/使用教程/callback_configuration.md -------------------------------------------------------------------------------- /docs/使用教程/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GentleCP/corpwechatbot/HEAD/docs/使用教程/index.md -------------------------------------------------------------------------------- /docs/使用教程/terminal_msg_send.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GentleCP/corpwechatbot/HEAD/docs/使用教程/terminal_msg_send.md -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GentleCP/corpwechatbot/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GentleCP/corpwechatbot/HEAD/setup.py -------------------------------------------------------------------------------- /tests/data/test.amr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GentleCP/corpwechatbot/HEAD/tests/data/test.amr -------------------------------------------------------------------------------- /tests/data/test.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GentleCP/corpwechatbot/HEAD/tests/data/test.mp4 -------------------------------------------------------------------------------- /tests/data/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GentleCP/corpwechatbot/HEAD/tests/data/test.png -------------------------------------------------------------------------------- /tests/data/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GentleCP/corpwechatbot/HEAD/tests/data/test.txt -------------------------------------------------------------------------------- /tests/test_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GentleCP/corpwechatbot/HEAD/tests/test_app.py -------------------------------------------------------------------------------- /tests/test_appchat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GentleCP/corpwechatbot/HEAD/tests/test_appchat.py -------------------------------------------------------------------------------- /tests/test_chatbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GentleCP/corpwechatbot/HEAD/tests/test_chatbot.py --------------------------------------------------------------------------------