我正在从URL获取天气信息。
weather = urllib2.urlopen('url')
wjson = weather.read()
我得到的是:
{
"data": {
"current_condition": [{
"cloudcover": "0",
"humidity": "54",
"observation_time": "08:49 AM",
"precipMM": "0.0",
"pressure": "1025",
"temp_C": "10",
"temp_F": "50",
"visibility": "10",
"weatherCode": "113",
"weatherDesc": [{
"value": "Sunny"
}],
"weatherIconUrl": [{
"value": "http:\/\/www.worldweatheronline.com\/images\/wsymbols01_png_64\/wsymbol_0001_sunny.png"
}],
"winddir16Point": "E",
"winddirDegree": "100",
"windspeedKmph": "22",
"windspeedMiles": "14"
}]
}
}
如何访问所需的任何元素?
如果我这样做:print wjson['data']['current_condition']['temp_C']
我收到错误消息:
字符串索引必须是整数,而不是str。
requests
是与JSON相处的一种了不起的方法。如果您要处理复杂的URL,请使用它。