Skip to content

atopos0627/WeRoBot

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

93 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

#WeRoBot

Build Status

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()