文件名称:pywechat:python 微信公共号框架 支持多账号
文件大小:3KB
文件格式:ZIP
更新时间:2024-06-22 10:51:31
Python
python 微信公共号框架 支持多账号 基于tornado 例子 class TestApp(BaseRequest): """ 公共号实例,一个公共号一个实例,只需要实现需要的功能就行,具体接受的消息类型见父类 """ def get_text(self): """ 当测试app收到微信的文字消息时,do something """ if self.wxtext == '1': #如果收到 '1' self.send_text('1')#回复1 def get_location(self): """ 收到地理位置消息 """ self.send_artical('test','test','http://a.jpg','http://qq.com')
【文件预览】:
pywechat-master
----README.md(1KB)
----wechat_server.py(9KB)