Metadata-Version: 1.1
Name: WeRoBot
Version: 0.3.5
Summary: WeRoBot: a robot framework for wechat
Home-page: https://github.com/whtsky/WeRoBot
Author: whtsky
Author-email: whtsky@me.com
License: MIT License
Description: 
            WeRoBot 是一个简单好用的 Python 微信机器人框架。
        
            Hello World ::
        
                import werobot
        
                robot = werobot.WeRoBot(token='tokenhere')
        
                @robot.handler
                def echo(message):
                    return 'Hello World!'
        
                robot.run()
        
            文档： https://werobot.readthedocs.org/en/v0.3.5/index.html
            
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: MacOS
Classifier: Operating System :: POSIX
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.1
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
