Skip to main content

A wrapper for the U.S. National Weather Service API

Project description

Rossby

A wrapper for the National Weather Service API


Info

Documentation for the National Weather Service API can be found here.

Everything that is used to construct this wrapper is contained in the directory you are currently in. There are 3 files that wrap the entire API:

  • rossby.py
  • api_config.py
  • default_response.py

All of the endpoints can be found in the file api_config.py, variable api_endpoints. Each key in this dictionary variable defines the name of a base endpoint that can be called on a Rossby() object. Subsequent key-value pairs represent the unique methods that can be called on the base endpoint.


Getting Started
from rossby import Rossby


rossby = Rossby()

kunv = rossby.stations.by_id(station_id='KUNV')

print(kunv.geometry)
print(kunv.geometry.coordinates)  # equivalent to kunv.geometry['coordinates']

office = rossby.offices.by_id(office_id='CTP')

print(office.address)
print(office.address.streetAddress)
print(office.responsibleCounties)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

rossby-0.0.3.tar.gz (5.0 kB view hashes)

Uploaded Source

Built Distribution

rossby-0.0.3-py3-none-any.whl (7.2 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page