Metadata-Version: 1.1
Name: noaa-sdk
Version: 0.1.12
Summary: NOAA API (V3) Python 3 SDK.
Home-page: https://github.com/paulokuong/noaa
Author: Paulo Kuong
Author-email: paulo.kuong@gmail.com
License: MIT
Description: | |Build Status|
        
        NOAA Python SDK
        ---------------
        
        SDK for NOAA Weather Service REST API.
        
            | Fully unit tested SDK for NOAA Weather Service REST API.
            | https://forecast-v3.weather.gov/documentation
            | https://github.com/paulokuong/noaa
        
        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)
        
        .. code:: python
        
            from noaa_sdk import noaa
            n = noaa.NOAA()
            observations = n.get_observations_by_postalcode_country('11365','US')
            for observation in observations:
                print(observation)
        
        | To get weather forecast for a coordinate in USA
        
        .. code:: python
        
            from noaa_sdk import noaa
        
            n = noaa.NOAA()
            n.points_forecast(40.7314, -73.8656, hourly=False)
        
        Contributors
        ------------
        
        -  Paulo Kuong (`@pkuong`_)
        
        .. _@pkuong: https://github.com/paulokuong
        
        .. |Build Status| image:: https://travis-ci.org/paulokuong/noaa.svg?branch=master
        .. target: https://travis-ci.org/paulokuong/noaa
Keywords: NOAA noaa weather public v3 api sdk osm postalcode country postcode
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.4
