Metadata-Version: 2.1
Name: weather_gov
Version: 0.2
Summary: A Python wrapper for the National Weather Service's Weather.gov API
Home-page: https://github.com/spectrshiv/python-weather_gov
Author: TJ Courier
Author-email: pycepticus@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Scientific/Engineering :: Atmospheric Science
Description-Content-Type: text/markdown
License-File: LICENSE

# python-weather_gov

An API wrapper for Weather.gov made in base Python.

## Example

```
import weather_gov


client = weather_gov.Client()

print(client.alerts(limit=1))

```

# Links 

- [National Weather Service web api overview](https://www.weather.gov/documentation/services-web-api#/)
- [OpenAPI Spec](https://api.weather.gov/openapi.json)
- [Weather.gov Github](https://weather-gov.github.io/api/)
