Skip to content

FashtimeDotCom/weixin

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

微信公众平台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包

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published