#We can use python to develop a program to capture any city’s weather forecast from openweathermap.org
#web site under our Raspberry Pi computer.
import urllib.request,json
city = input("Enter City: ")
def getForecast(city) :
#url = "http://api.openweathermap.org/data/2.5/forecast/daily?cnt=7&units=meteric&mode=json&q=”
#url = "http://api.openweathermap.org/data/2.5/forecast/city?id=524901&APPID=42443ecbdcad3d01842205e3745895cd”
#url = "http://api.openweathermap.org/data/2.5/forecast/daily?cnt=7&units=meteric&mode=json&q=LONDON&lang=zh_cn&APPID=42443ecbdcad3d01842205e3745895cd”
url = "http://api.openweathermap.org/data/2.5/forecast/daily?cnt=7&units=meteric&mode=json&q="
url = url + city + "&lang=zh_cn&APPID=42443ecbdcad3d01842205e3745895cd"
req = urllib.request.Request(url)
response=urllib.request.urlopen(req)
return json.loads(response.read().decode("UTF-8"))
forecast = getForecast(city)
print("Forecast for ", city, forecast['city']['country'])
day_num=1
for day in forecast['list']:
print("Day : ", day_num)
print(day['weather'][0]['description'])
print("Cloud Cover : ", day['clouds'])
print("Temp Min : ", round(day['temp']['min']-273.15, 1), "degrees C")
print("Temp Max : ", round(day['temp']['max']-273.15, 1), "degrees C")
print("Humidity : ", day['humidity'], "%")
print("Wind Speed : ", day['speed'], "m/s")
print()
day_num = day_num+1
Thoughts, backup of reads and liked courses, dumping grounds, references, old scripts, etc.