url 给了我 json 输出,但我想将该输出保存到 python 中的 json 文件中。
这是代码
import urllib2
import json
url = "http://query.yahooapis.com/v1/public/yql?q=select%20item.yweather:condition.code,item.yweather:condition.text,item.yweather:condition.temp%20from%20weather.forecast%20where%20woeid%3D2295420&format=json"
data = urllib2.urlopen(url)
print data
我得到的输出是
<<addinfourl at 159473132 whose fp = <socket._fileobject object at 0x981436c>>
我想要json输出而不是这个套接字地址....