Metadata-Version: 1.0
Name: noaaweather
Version: 0.1.0
Summary: Easy use of NOAA weather services.
Home-page: http://pypi.python.org/pypi/noaaweather/
Author: Matthew Howland
Author-email: matt.howland@lab45.com
License: LICENSE.txt
Description: ===========
        NOAA Weather
        ===========
        
        A handy utility to pull weather from NOAA services in a sane manner.
        
            #!/usr/bin/env python
        
            from noaaweather import weather
        
            sfWeather = weather.noaa()
            sfWeather.getByZip('94109')
            print sfWeather.precipitation.liquid.tomorrow.max.value
            print sfWeather.temperature.apparent.tomorrow.min.value
            print sfWeather.temperature.apparent.value
            Support for Temperature, Humidity, Wind, Precipitation, Cloud Cover
        
            Pulls from http://graphical.weather.gov/xml/rest.php
        
            First release not really tested...
        
        
        
Platform: UNKNOWN
