Metadata-Version: 1.1
Name: yahooweather
Version: 0.2
Summary: a Python module that provides an interface to the Yahoo! Weather RSS feed.
Home-page: https://github.com/pvizeli/yahooweather
Author: Pascal Vizeli
Author-email: pvizeli@syshack.ch
License: BSD License
Download-URL: https://github.com/pvizeli/yahooweather/tarball/0.2
Description: yahooweather
        ============
        Python modul for access to yahoo! weather
        
        Example
        -------
        .. code:: python
        
            import logging
            from yahooweather import YahooWeather, UNIT_C
        
            logging.basicConfig(level=logging.WARNING)
        
            yweather = YahooWeather(12891864, UNIT_C)
            if yweather.updateWeather():
                print("RawData: %s" % str(yweather.RawData))
                print("Units: %s" % str(yweather.Units))
                print("Now: %s" % str(yweather.Now))
                print("Forecast: %s" % str(yweather.Forecast))
                print("Wind: %s" % str(yweather.Wind))
                print("Atmosphere: %s" % str(yweather.Atmosphere))
                print("Astronomy: %s" % str(yweather.Astronomy))
            else:
                print("Can't read data from yahoo!")
        
        Rate Limits
        -----------
        Use of the Yahoo Weather API should not exceed reasonable request volume. Access is limited to 2,000 signed calls per day.
        
        Links
        -----
        - https://developer.yahoo.com/weather/
        
Keywords: weather,yahoo,interface,wrapper,api
Platform: any
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Scientific/Engineering :: Atmospheric Science
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
