From 1beaa1ed5acb7d3ee45f28822a0259236c7e327a Mon Sep 17 00:00:00 2001 From: SpudGunMan Date: Wed, 26 Jun 2024 17:43:12 -0700 Subject: [PATCH] Update locationdata.py --- locationdata.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/locationdata.py b/locationdata.py index 6203906..e62f4b9 100644 --- a/locationdata.py +++ b/locationdata.py @@ -86,12 +86,11 @@ def get_weather(lat=0, lon=0, unit=0): if float(lat) == 0 and float(lon) == 0: return NO_DATA_NOGPS - + # get weather data from NOAA units for metric weather_url = "https://forecast.weather.gov/MapClick.php?FcstType=text&lat=" + str(lat) + "&lon=" + str(lon) if unit == 1: weather_url += "&unit=1" - try: weather_data = requests.get(weather_url, timeout=URL_TIMEOUT) if not weather_data.ok: @@ -99,7 +98,6 @@ def get_weather(lat=0, lon=0, unit=0): except (requests.exceptions.RequestException): return ERROR_FETCHING_DATA - soup = bs.BeautifulSoup(weather_data.text, 'html.parser') table = soup.find('div', id="detailed-forecast-body")