WeRoBot是一个基于Python的微信机器人框架。
简单的Hello World:
import werobot robot = werobot.WeRoBot(token='tokenhere') @robot.handler def echo(message): return 'Hello World!' robot.run()