WeRoBot
Version 1.13.1
WeRoBot is a WeChat public account development framework, released under the MIT license.
The documentation is here: https://werobot.readthedocs.org/zh_CN/latest/
It is recommended to use pip for installation
pip install werobot
A very simple Hello World WeChat public account that will reply Hello World to all text messages received
import werobot robot = werobot.WeRoBot(token='tokenhere') @robot.text def hello_world(): return 'Hello World!' robot.run()
Thank you to all the people who have already contributed.