对企业微信群聊机器人进行封装以方便使用的框架
企业微信群聊机器人官方文档点这里
鹅厂同学的加料版企业微信机器人可以参考 wxwork_robotd 和 DiaoBot
Python 3.5+
requests
pip3 install weworkbot
from weworkbot import Bot as wBot
wBot(url).set_text("hello world").send()
wBot(url).set_text('<font color="info">Hello world</font>', type='markdown').send()
wBot(url).set_image_path('test.jpeg').send()
封装了定时任务、提醒列表、发送计数等功能,详见examples
- 添加单测以及 Travis CI 配置
- 添加 Markdown 类型消息的支持
- 添加 image 类型消息的支持
- 添加 CLI 支持
- 添加 图文类型消息的支持
如果有使用上的问题、需要新功能、或发现了 bug,请创建新 issue
或直接提交 pull request
MIT License