wcurrent and daily weather added

This commit is contained in:
Neythen
2021-06-07 21:03:03 +01:00
parent 7a0056abc4
commit 34b204347a
29 changed files with 174 additions and 68 deletions

View File

@@ -257,7 +257,7 @@ def updateWeather(location, api_key):
dct['main_weather'] = day['weather'][0]['main']
dct['description'] = day['weather'][0]['description']
dct['min_temp'] = day['temp']['min']
dct['min_temp'] = day['temp']['max']
dct['max_temp'] = day['temp']['max']
daily_weather.append(dct)