The National Weather Service (NWS) API allows developers access to weather forecasts, alerts, and observations, along with other data. The information obtained via the API is open data and free.
Read the NWS API documentation and examples. Use it in the projects.
To obtain the most accurate weather data for a location you will need its latitude/longitude. Click here for a web based latitude and longitude finder.
Display the current weather for your location.
Display/format the data in a pretty/readable/useful format. If you have the time and the inclination use PySimpleGUI and create a nice GUI display.
Given the following forecast data, plot the 7 day high and low temperatures.
matplotlib.pyplot (documentation and examples)
Using the current forecast for your location, plot the 7 day high and low temperatures. (Same as Project #2 but different/current data.)
What climate data is available? Pick some, plot some.
National Centers for Environmental Information
How to use the weather.gov API
National Weather Service (home)
National Weather Service Web API (documentation)
10 Best Python Weather API Libraries
Getting the Weather With Python
How to use the NOAA API to query past weather data for a given set of coordinates
JSON encoder and decoder
Python Requests Module Documentation