python
文章平均质量分 63
易伟律师
汕头律师业余爱好编程
展开
-
python微信二响应各类消息
注意缩进和冒号,交流q群:287714361#coding: utf-8 import saeimport webimport xml.etree.ElementTree as ET urls = ( '/', 'Hello')class Hello: def GET(self): data=web.input原创 2014-03-04 00:35:28 · 1021 阅读 · 0 评论 -
python微信六自定义菜单创建和删除
分别访问creat和del目录即可# -*- coding: utf-8 -*-import saeimport webimport xml.etree.ElementTree as ETimport sae.constimport MySQLdbimport urllib2import jsonurls = ( '/', 'Hello', '/creat',原创 2014-03-06 23:08:08 · 5122 阅读 · 0 评论 -
python微信八多媒体上传
多媒体上传使用Post方式,这里用到requests第三方包,地址http://cn.python-requests.org/en/latest/user/quickstart.html#id2,上传至site-packages目录,通过浏览器路径得到mediaid。token文件为tokenabc.py见上一节内容。# -*- coding: utf-8 -*-import sae原创 2014-04-04 23:32:10 · 2263 阅读 · 0 评论 -
python微信七token保存
微信中token可以保存2小时并有调用次数限制,需要进行缓存保存。首先打开sae的缓存memcache,1M即可。建立tokenabc.pyimport urllib2import jsonimport pylibmc as memcachemc = memcache.Client()token = mc.get("token")if token == None: appid原创 2014-03-12 22:40:04 · 2271 阅读 · 0 评论 -
python微信五数据库
sae数据库表py,字段id,pro,value,输入省份,返回省会。前期测试错误,原来是字段名为key可能为保留字。后发现不用s%,直接用sql语句也可以,注意链接utf8# -*- coding: utf-8 -*-import saeimport webimport xml.etree.ElementTree as ETimport sae.constimport MySQLd原创 2014-03-06 22:22:38 · 1756 阅读 · 0 评论 -
python微信四json解析
以上节车联网api为例,换成json格式,json解析基础看http://blog.csdn.net/u011330225/article/details/20566727,python微信交流qq群:287714361#coding: utf-8 import saeimport webimport xml.etree.ElementTree as ET import urllib原创 2014-03-05 20:35:31 · 1218 阅读 · 0 评论 -
python解析json基础
import jsona='''{"employees": [{ "firstName":"Bill" , "lastName":"Gates" },{ "firstName":"George" , "lastName":"Bush" },{ "firstName":"Thomas" , "lastName":"Carter" }]}'''b=json.loads(a)c=b['原创 2014-03-05 20:25:15 · 894 阅读 · 0 评论 -
python微信一SAE上验证和hello
#coding: utf-8 import saeimport webimport xml.etree.ElementTree as ET urls = ( '/', 'Hello')class Hello: def GET(self): data=web.input() echostr=data.原创 2014-03-02 23:53:14 · 1593 阅读 · 2 评论 -
python微信三被动响应文本和图文
#coding: utf-8 import saeimport webimport xml.etree.ElementTree as ET urls = ( '/', 'Hello')class Hello: def GET(self): data=web.input() echostr=data.原创 2014-03-04 19:54:36 · 1563 阅读 · 0 评论 -
python微信四xml解析
百度的天气预报#coding: utf-8 import saeimport webimport xml.etree.ElementTree as ET import urllib2urls = ( '/', 'Hello')class Hello: def GET(self): data=web.input()原创 2014-03-04 22:07:12 · 2160 阅读 · 1 评论 -
python微信九django验证和消息回复
django版本为sae1.27,即默认版本。原创 2014-06-11 01:15:02 · 1569 阅读 · 0 评论