微機器人
Version 1.13.1
WeRoBot 是一個微信公眾號開發框架,採用MIT協議發布。
文件在這裡: https://werobot.readthedocs.org/zh_CN/latest/
推薦使用pip 進行安裝
pip install werobot
一個非常簡單的Hello World 微信公眾號,會對收到的所有文字訊息回覆Hello World
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.