我想遍历 JSON 文件的内容并将其打印到控制台。
我想我确实把一些东西和清单混在一起了。
这就是我试图获得的所有team_name
元素
from urllib2 import urlopen
import json
url = 'http://openligadb-json.heroku.com/api/teams_by_league_saison?league_saison=2012&league_shortcut=bl1'
response = urlopen(url)
json_obj = json.load(response)
for i in json_obj['team']:
print i
这是我的 JSON(简体:)
{
"team": [
{
"team_icon_url": "http://www.openligadb.de/images/teamicons/Hamburger_SV.gif",
"team_id": "100",
"team_name": "Hamburger SV"
},
{
"team_icon_url": "http://www.openligadb.de/images/teamicons/FC_Schalke_04.gif",
"team_id": "9",
"team_name": "FC Schalke 04"
}
]
}
(可在此处找到完整的 JSON 输出:链接)
当然我得到一个错误,我应该在 [] 中使用整数输入,而不是字符串,但我不明白我该怎么做。
for i in json_obj['team']:
TypeError: string indices must be integers, not str
这是response
:
http://openligadb-json.heroku.com/api/teams_by_league_saison?league_saison=2012&league_shortcut=bl1
<addinfourl at 139755086292608 whose fp = <socket._fileobject object at 0x7f1b446d33d0>>
我做错了什么?