#WeRoBot
WeRoBot 是一个微信机器人框架,采用MIT协议发布。
文档在这里:https://werobot.readthedocs.org/en/latest/
##安装
pip install werobot
##Hello World
import werobot
robot = werobot.WeRoBot(token='tokenhere')
@robot.handler
def echo(message):
return 'Hello World!'
robot.run()