因为我刚刚开始使用 python,所以我认为我还没有很好地掌握解析 json 响应的概念,并且当我尝试只打印出 json 文件的某些部分时会遇到同样的问题。在下面的代码中,我使用foursquare checkins API 端点来返回我的签入历史(为简洁起见,省略了身份验证过程):
from rauth import OAuth2Service
import json
import pprint
fs_checkins = session.get(endpoint, params = query_params)
fs_checkin_data = json.loads(fs_checkins.content)
pprint.pprint(fs_checkin_data)
这会产生如下所示的 json 响应:
{u'response': {u'checkins': {u'count': 74,
u'items': [{u'photos': {u'count': 0,
u'items': []},
u'posts': {u'count': 0,
u'textCount': 0},
u'source': {u'name': u'foursquare for iPhone',
u'url': u'https://foursquare.com/download/#/iphone'},
u'timeZoneOffset': -240,
u'type': u'checkin',
u'venue': {u'beenHere': {u'count': 1,
u'marked': False},
u'canonicalUrl': u'https://foursquare.com/v/nitehawk-cinema/4da491f6593f8eec9a257e35',
u'categories': [{u'icon': {u'prefix': u'https://foursquare.com/img/categories_v2/arts_entertainment/movietheater_',
u'suffix': u'.png'},
u'id': u'4bf58dd8d48988d17f941735',
u'name': u'Movie Theater',
u'pluralName': u'Movie Theaters',
u'primary': True,
u'shortName': u'Movie Theater'}],
u'contact': {u'formattedPhone': u'(718) 384-3980',
u'phone': u'7183843980'},
u'id': u'4da491f6593f8eec9a257e35',
u'like': False,
u'likes': {u'count': 114,
u'groups': [{u'count': 114,
u'items': [],
u'type': u'others'}],
u'summary': u'114 likes'},
u'location': {u'address': u'136 Metropolitan Ave.',
u'cc': u'US',
u'city': u'Brooklyn',
u'country': u'United States',
u'crossStreet': u'btwn Berry St. & Wythe Ave.',
u'lat': 40.716219932353624,
u'lng': -73.96228637176877,
u'postalCode': u'11211',
u'state': u'NY'},
u'name': u'Nitehawk Cinema',
u'stats': {u'checkinsCount': 11566,
u'tipCount': 99,
u'usersCount': 6003},
u'url': u'http://www.nitehawkcinema.com',
u'venuePage': {u'id': u'49722288'},
u'verified': True}}]}}}
我只想解析'canonicalUrl'
并'name'
嵌套在下面'venue'
并理解结构如下:
response
checkins
items
venue
canonicalUrl
name
我尝试循环fs_checkin_data['response']['checkins']
将'items'
blob 附加到一个空列表中:
items = []
for item in fs_checkin_data['response']['checkins']:
info = {}
info['items'] = item['items']
items.append(info)
认为我将能够 for 循环遍历该空列表以将 blob 附加'venue'
到另一个空列表中,最后只能打印出'canonicalUrl'
and 'name'
(为我即兴创作的丑陋的黑客逻辑道歉,因为我不知道获得相同结果的另一种方法)。
但是,上面的代码导致了这个错误:
info['items'] = item['items']
TypeError: string indices must be integers
自从我做以来我不明白
for item in fs_checkin_data['response']['checkins']:
pprint.pprint(item)
通过 json 文件的那部分没有问题。
我知道必须有更好的方法来做到这一点,但我似乎无法找到一个简单、有效的解决方案,因此我们将不胜感激任何帮助。谢谢你。