Metadata-Version: 1.1
Name: weatherpy
Version: 1.0.1
Summary: Python wrapper for Yahoo weather API
Home-page: https://github.com/cmcdowell/weatherpy
Author: Christopher McDowell
Author-email: chris.p.mcdowell@gmail.com
License: UNKNOWN
Description: Weatherpy, python wrapper for Yahoo weather API
        -----------------------------------------------
        
        Weatherpy is a package that allows you to simply and easily access Yahoo's
        weather API. Give weatherpy a user agent and a WOEID and weatherpy will make
        accessing elements of the RSS feed simple.
        
        example.
        
            import weatherpy
            r = weatherpy.Response('Bob's weather script', 44544)
            print 'Wind: ', r.wind.speed, r.units.speed, r.wind.cardinal_direction()
        
        gives
        
            Wind: 6 km/h N
        
        Weatherpy is only tested with python 2.5+. Weatherpy is not compatible wihth
        python 3.
        
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Development Status :: 4 - Beta
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: MIT License
Classifier: Intended Audience :: Developers
Classifier: Environment :: Other Environment
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Utilities
