Skip to content

Latest commit

 

History

History
63 lines (42 loc) · 1.42 KB

File metadata and controls

63 lines (42 loc) · 1.42 KB
Build Status

NOAA Python SDK

SDK for NOAA Weather Service REST API.

Fully unit tested SDK for NOAA Weather Service REST API.

Requirements

  • Python 2.7 (tested)

Goal

To provide a generic wrapper for the latest V3 NOAA weather service API.
Keep on changing this SDK when NOAA updates their API.
Class can be extended / decorated.

Code sample

To get weather forecast with postal code and country code.
from noaa_sdk import noaa
n = noaa.NOAA()
res = n.get_forecasts('11365', 'US', True)
for i in res:
    print(i)
To get weather observation data from all nearest stations in 11375, US between 2017-12-01 00:00:00 (UTC) to 2017-12-01 05:00:00 (UTC)
from noaa_sdk import noaa
n = noaa.NOAA()
observations = n.get_observations('11365','US')
for observation in observations:
    print(observation)
To get weather forecast for a coordinate in USA
from noaa_sdk import noaa
n = noaa.NOAA()
n.points_forecast(40.7314, -73.8656, hourly=False)

Contributors