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 ではなく整数でなければなりません。