在我的一个脚本中得到以下代码:
#
# url is defined above.
#
jsonurl = urlopen(url)
#
# While trying to debug, I put this in:
#
print jsonurl
#
# Was hoping text would contain the actual json crap from the URL, but seems not...
#
text = json.loads(jsonurl)
print text
我想做的是得到{{.....etc.....}}
的东西,我看到的URL,当我在Firefox加载到我的脚本,以便我可以解析出一个值。我已经谷歌了很多,但我还没有找到一个很好的答案,如何从一个以.json
结尾的URL中实际获得{{...}}
的东西到一个Python脚本中的对象。