http://weather.livedoor.com/weather_hacks/webservice
import json import requests city = "140010" url = 'http://weather.livedoor.com/forecast/webservice/json/v1?city=%s' % city response = requests.get(url) weather = response.json() print(weathe)
http://weather.livedoor.com/weather_hacks/webservice
import json import requests city = "140010" url = 'http://weather.livedoor.com/forecast/webservice/json/v1?city=%s' % city response = requests.get(url) weather = response.json() print(weathe)