Metadata-Version: 1.0
Name: earthtools
Version: 0.0.4
Summary: Python wrapper around earthtools.org/webservices.htm
Home-page: http://github.com/cancerhermit/PyEarthTools/
Author: cancerhermit
Author-email: cancerhermit@gmail.com
License: GPL
Description: Installing
        ----------
        
        ::
        
            sudo pip install earthtools
        
        Usage
        -----
        
        ::
        
            from earthtools import sun
            today=sun.download(sun.url(55.120010, 33.233448))
            print "%s - %s" % (today.sunrise,today.sunset)
        
            from datetime import date, datetime, timedelta
            from time import timezone
            nextday=date.today() + timedelta(1)
            offset=-timezone/3600
            tomorrow=sun.download(sun.url(55.120010, 33.233448, month=nextday.month,day=nextday.day))
            print "%s - %s" % (tomorrow.sunrise,tomorrow.sunset)
        
            today.save("~/Downloads/sun.today.xml")
            today=sun.load("~/Downloads/sun.today.xml")
        
        
Platform: UNKNOWN
Classifier: Environment :: Console
Classifier: Operating System :: POSIX
Classifier: Operating System :: Unix
Classifier: Programming Language :: Python
