diff --git a/scraper_functions.py b/scraper_functions.py index 49c94ca..71da596 100644 --- a/scraper_functions.py +++ b/scraper_functions.py @@ -50,7 +50,7 @@ def getDmzTasks(url): return e def get_weather(city:str) -> str: - url = f"https://wttr.in/{city}?format=3" + url = f"https://wttr.in/{city}?format=4" if not city.replace(" ","").isalpha(): return "no such city" resp = requests.get(url)