phonix2012 / weixin

微信公众平台的Python包

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

微信公众平台Python包

介绍

微信公众平台的Python SDK,为使用Python开发微信公众平台的开发者提供扩展包,目前只支持消息接口。

安装方法

pip install weixin

Or

pip install https://github.com/cloudaice/weixin/zipball/master

Or

pip install git+git://github.com/cloudaice/weixin.git@master

使用方法

from weixin import  Weixin

# process GET
weixinhandler = Weixin(token="your-weixin-token")
is_valid, echostr = weixinhandler.verify_request(signature='', timestamp='', nonce='', echostr='')
if is_valid:
    response(echostr)

# process POST
weixinhandler = Weixin(token="your-weixin-token")
params = weixinhandler.handle_request(request.body)
print params['MsgType']
print params['ToUserName']
print params['FromUserName']
....

content = "your content"
weixinhandler.text(content)
#weixinhandler.music(content)
#weixinhandler.news(content)
xml_body = weixinhandler.handle_response(ToUserName='', MsgType='', kwargs)
response(xml_body)

About

微信公众平台的Python包

License:Other


Languages

Language:Python 100.0%