Metadata-Version: 2.1
Name: timezonefinder
Version: 4.5.0
Summary: fast python package for finding the timezone of any point on earth (coordinates) offline
Home-page: https://github.com/MrMinimal64/timezonefinder
Author: Jannik Michelfeit
Author-email: python@michelfe.it
License: MIT licence
Project-URL: Source Code, https://github.com/MrMinimal64/timezonefinder
Project-URL: Documentation, https://timezonefinder.readthedocs.io/en/latest/
Project-URL: Changelog, https://github.com/MrMinimal64/timezonefinder/blob/master/CHANGELOG.rst
Project-URL: License, https://github.com/MrMinimal64/timezonefinder/blob/master/LICENSE
Description: ==============
        timezonefinder
        ==============
        
        .. image:: https://api.travis-ci.org/MrMinimal64/timezonefinder.svg?branch=master
            :target: https://travis-ci.org/MrMinimal64/timezonefinder
        
        .. image:: https://readthedocs.org/projects/timezonefinder/badge/?version=latest
            :alt: documentation status
            :target: https://timezonefinder.readthedocs.io/en/latest/?badge=latest
        
        .. image:: https://img.shields.io/circleci/project/github/conda-forge/timezonefinder-feedstock/master.svg?label=noarch
            :target: https://circleci.com/gh/conda-forge/timezonefinder-feedstock
        
        .. image:: https://img.shields.io/pypi/wheel/timezonefinder.svg
            :target: https://pypi.python.org/pypi/timezonefinder
        
        .. image:: https://pepy.tech/badge/timezonefinder
            :alt: total PyPI downloads
            :target: https://pepy.tech/project/timezonefinder
        
        .. image:: https://img.shields.io/pypi/v/timezonefinder.svg
            :alt: latest version on PyPI
            :target: https://pypi.python.org/pypi/timezonefinder
        
        .. image:: https://anaconda.org/conda-forge/timezonefinder/badges/version.svg
            :alt: latest version on Conda
            :target: https://anaconda.org/conda-forge/timezonefinder
        
        
        
        
        This is a fast and lightweight python package for looking up the corresponding
        timezone for given coordinates on earth entirely offline.
        
        
        Quick Guide:
        
        ::
        
            pip install timezonefinder[numba] # also installs numba -> x100 speedup
        
        
        .. code-block:: python
        
            from timezonefinder import TimezoneFinder
        
            tf = TimezoneFinder()
            latitude, longitude = 52.5061, 13.358
            tf.timezone_at(lng=longitude, lat=latitude) # returns 'Europe/Berlin'
        
        
        For more refer to the `Documentation <https://timezonefinder.readthedocs.io/en/latest/>`__.
        
        Also check:
        
        `PyPI <https://pypi.python.org/pypi/timezonefinder/>`__
        
        `online GUI and API <https://timezonefinder.michelfe.it>`__
        
        `conda-forge feedstock <https://github.com/conda-forge/timezonefinder-feedstock>`__
        
        ruby port: `timezone_finder <https://github.com/gunyarakun/timezone_finder>`__
        
        `download stats <https://pepy.tech/project/timezonefinder>`__
        
        
Keywords: timezone coordinates latitude longitude location pytzwhere tzwhere
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Natural Language :: English
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Software Development :: Localization
Requires-Python: >=3.6
Description-Content-Type: text/x-rst
Provides-Extra: numba
