我正在尝试使用 discogs API 获取 JSON 数据,但是当我将数据作为原始数据粘贴到浏览器中时,代码似乎没有给出我看到的输出。请让我知道我在这里做错了什么,因为我是 Python 新手。我正在寻找标题,图像的输出。谢谢!
Python:
import urllib
import urllib2
import json
url = 'http://api.discogs.com/masters/66271'
request = urllib2.Request('http://api.discogs.com/masters/66271')
request.add_header('User-Agent','Mozilla/4.0 (compatible; MSIE 5.5; Windows NT)')
request.add_header('Content-Type','application/json')
response = urllib2.urlopen(request)
json_raw= response.readlines()
json_object = json.loads(json_raw[0])
print json_object
for row in json_object:
print row
print row['title']
错误的输出:
styles
genres
videos
title
main_release
main_release_url
uri
artists
versions_url
year
images
resource_url
tracklist
id
data_quality