所以我正在尝试学习如何搜索 trakt.tv 的 api 的输出并只返回某个节目的信息。json输出如下
[
{
"title": "NCIS",
"year" : 2003,
"url": "blah"
},
{
"title": "Jeffersons",
"year" : 1902,
"url": "notreally"
}
]
:编辑了正确格式的代码。
我试图只查找标题 NCIS 的信息。我在获取信息时遇到了问题。可能是因为我所看到的所有内容都与 json.dump 或 json.loads 相关,而我正在尝试使用data = json.load(urllib2.urlopen(url))
如果标题与 NCIS 匹配,我基本上只想显示 show:0。我只是不确定如何。