I am getting the weather information from a URL.
weather = urllib2.urlopen(\'url\') wjson = weather.read()
and what I am getting is:
Another alternative way using get method with requests:
import requests wjdata = requests.get('url').json() print wjdata.get('data').get('current_condition')[0].get('temp_C')