码迷,mamicode.com
首页 > 编程语言 > 详细

python 解析 json

时间:2014-08-16 12:31:50      阅读:230      评论:0      收藏:0      [点我收藏+]

标签:blog   http   io   for   cti   div   log   ad   

#coding=utf=8
import urllib,json

url =‘https://api.douban.com/v2/book/user/62855846/collections‘
read = urllib.urlopen(url).read()


j = 0
titles=[]
atls=[]
images=[]

a = json.loads(read)
leng = int(a[‘total‘])

for i in range(leng):
    titles.append( a[‘collections‘][j][‘book‘][‘title‘])
    atls.append(a[‘collections‘][j][‘book‘][‘alt‘])
    images.append( a[‘collections‘][j][‘book‘][‘images‘][‘medium‘])   
    j=j+1
    
print titles
print atls
print images

  

python 解析 json,布布扣,bubuko.com

python 解析 json

标签:blog   http   io   for   cti   div   log   ad   

原文地址:http://www.cnblogs.com/xiaoyutongxue/p/3916270.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!