在我的一个脚本中得到以下代码:
#
# 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.....}}
我在 Firefox 中将 URL 加载到脚本中时在 URL 上看到的内容,以便从中解析出一个值。我已经用谷歌搜索了很多,但我还没有找到一个很好的答案来说明如何{{...}}
从一个以结尾的 URL 实际获取内容.json
到 Python 脚本中的对象中。