Get Weather using JSON web service and Python
Get the current weather for Copenhagen: import urllib2 import json # hent vejret for Koebenhavn url = ‘,dk’ response = urllib2.urlopen(url) # parse JSON resultatet data = json.load(response) print ‘Weather in Copenhagen:’, data[‘weather’][0][‘description’]