I am getting the weather information from a URL.
weather = urllib2.urlopen(\'url\') wjson = weather.read()
and what I am getting is:
'temp_C' is a key inside dictionary that is inside a list that is inside a dictionary
This way works:
wjson['data']['current_condition'][0]['temp_C'] >> '10'