python 解析web接口的json数据
实例1-使用urllib2
#utf-8 import urllib2 import json url="http://xxx.com" #获取json格式的字符串 page=urllib2.urlopen(url) data=page.read() #转换成python中的字典格式,用json.loads()方法 ddata=json.loads(data) #循环获取titile属性的值 len=len(ddata) for i in range(0,len): x=ddata[i].get('title') print x
实例2-使用第demjson
#utf-8 import urllib import demjson url="http://xxx.com" page=urllib.urlopen(url) data=page.read() ddata=demjson.decode(data) len=len(ddata) for i in range(0,len): x=ddata[i].get('title') print x
不断的总结,才能不断的提高;不断的思考,才能不断的进步!