NOAA API (V3) Python 3 SDK.
Project description
NOAA Python SDK
SDK for NOAA Weather Service REST API.
Fully unit tested SDK for NOAA Weather Service REST API.
Requirements
Python 3.4 (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 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_by_postalcode_country(
'11375','US','2017-12-01T00:00:00+00:00','2017-12-01T05:00:00+00:00')
for observation in observations:
print(observation)
break
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
Paulo Kuong (@pkuong)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
noaa-sdk-0.1.2a0.tar.gz
(7.6 kB
view details)
File details
Details for the file noaa-sdk-0.1.2a0.tar.gz
.
File metadata
- Download URL: noaa-sdk-0.1.2a0.tar.gz
- Upload date:
- Size: 7.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 426f2b0656366ebbba91d43f4cca5be32780ba7ae4d918a6d9db98f97a7b2ad5 |
|
MD5 | 71eaf703a013f30d5b355c53027c3d18 |
|
BLAKE2b-256 | 841d567e067b3796a9f1c8f3e91ceb1c633eb6b0f2ce4e5a70d8b70b482767e4 |