Metadata-Version: 2.0
Name: tzgeo
Version: 0.0.4
Summary: Get the timezone for a location
Home-page: https://github.com/judy2k/tzgeo
Author: Mark Smith
Author-email: mark.smith@practicalpoetry.co.uk
License: MIT License
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Database
Classifier: Topic :: Scientific/Engineering :: GIS
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Dist: pyspatialite (>=3.0.1-alpha-0)

tzgeo
=====

tzgeo is a library with one simple purpose - to convert a lat/lon to a
timezone - really fast!


Installation
------------
The easiest way to install is using `pip`::

    pip install tzgeo


Usage
-----
Using tzgeo is very simple!

::

    >>> import tzgeo
    >>> tzgeo.tz_lookup(39.888724, -75.107952)
    u'America/New_York'


If the location is invalid, or points at the ocean, `tz_lookup` will return
`None`.


More Information
----------------
More information can be found on the project's `github page`_

.. _`github page`: https://github.com/judy2k/tzgeo


