This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import requests | |
BASE_URL = "https://www.weather.gov/source/mdl/NBM/blend_nbstx.t07z_{}.txt" | |
# See https://vlab.noaa.gov/web/mdl/nbm-stations-v4.2 to find your station ID | |
STATION = "<YOUR STATION ID HERE>" | |
def find_station_data(url, station) -> str | None: | |
"""Stream the URL looking for the station data. |