timezonefinder


Nametimezonefinder JSON
Version 6.5.5 PyPI version JSON
download
home_pagehttps://timezonefinder.michelfe.it/gui
Summarypython package for finding the timezone of any point on earth (coordinates) offline
upload_time2024-11-20 07:22:09
maintainerNone
docs_urlNone
authorjannikmi
requires_python<4,>=3.8
licenseMIT
keywords timezone coordinates latitude longitude location offline polygon
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage
            ==============
timezonefinder
==============


..
    Note: can't include the badges file from the docs here, as it won't render on PyPI -> sync manually

.. image:: https://github.com/jannikmi/timezonefinder/actions/workflows/build.yml/badge.svg?branch=master
    :target: https://github.com/jannikmi/timezonefinder/actions?query=branch%3Amaster

.. 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/pypi/wheel/timezonefinder.svg
    :target: https://pypi.python.org/pypi/timezonefinder

.. image:: https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit&logoColor=white
   :target: https://github.com/pre-commit/pre-commit
   :alt: pre-commit

.. 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://img.shields.io/conda/vn/conda-forge/timezonefinder.svg
   :target: https://anaconda.org/conda-forge/timezonefinder
   :alt: latest version on conda-forge

.. image:: https://img.shields.io/badge/code%20style-black-000000.svg
    :target: https://github.com/psf/black




Notice: Looking for maintainers. Reach out if you want to contribute!
---------------------------------------------------------------------


This is a python package for looking up the corresponding timezone for given coordinates on earth entirely offline.


Quick Guide:

.. code-block:: console

    pip install timezonefinder


.. code-block:: python

    from timezonefinder import TimezoneFinder

    tf = TimezoneFinder()  # reuse

    query_points = [(13.358, 52.5061), ...]
    for lng, lat in query_points:
        tz = tf.timezone_at(lng=lng, lat=lat)  # '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>`__


            

Raw data

            {
    "_id": null,
    "home_page": "https://timezonefinder.michelfe.it/gui",
    "name": "timezonefinder",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "<4,>=3.8",
    "maintainer_email": null,
    "keywords": "timezone, coordinates, latitude, longitude, location, offline, polygon",
    "author": "jannikmi",
    "author_email": "github@michelfe.it",
    "download_url": "https://files.pythonhosted.org/packages/c0/b0/9a884e7c2367f6f1c8ffdbd497f29888d06cf335c05989654541a49853bc/timezonefinder-6.5.5.tar.gz",
    "platform": null,
    "description": "==============\ntimezonefinder\n==============\n\n\n..\n    Note: can't include the badges file from the docs here, as it won't render on PyPI -> sync manually\n\n.. image:: https://github.com/jannikmi/timezonefinder/actions/workflows/build.yml/badge.svg?branch=master\n    :target: https://github.com/jannikmi/timezonefinder/actions?query=branch%3Amaster\n\n.. image:: https://readthedocs.org/projects/timezonefinder/badge/?version=latest\n    :alt: documentation status\n    :target: https://timezonefinder.readthedocs.io/en/latest/?badge=latest\n\n.. image:: https://img.shields.io/pypi/wheel/timezonefinder.svg\n    :target: https://pypi.python.org/pypi/timezonefinder\n\n.. image:: https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit&logoColor=white\n   :target: https://github.com/pre-commit/pre-commit\n   :alt: pre-commit\n\n.. image:: https://pepy.tech/badge/timezonefinder\n    :alt: total PyPI downloads\n    :target: https://pepy.tech/project/timezonefinder\n\n.. image:: https://img.shields.io/pypi/v/timezonefinder.svg\n    :alt: latest version on PyPI\n    :target: https://pypi.python.org/pypi/timezonefinder\n\n.. image:: https://img.shields.io/conda/vn/conda-forge/timezonefinder.svg\n   :target: https://anaconda.org/conda-forge/timezonefinder\n   :alt: latest version on conda-forge\n\n.. image:: https://img.shields.io/badge/code%20style-black-000000.svg\n    :target: https://github.com/psf/black\n\n\n\n\nNotice: Looking for maintainers. Reach out if you want to contribute!\n---------------------------------------------------------------------\n\n\nThis is a python package for looking up the corresponding timezone for given coordinates on earth entirely offline.\n\n\nQuick Guide:\n\n.. code-block:: console\n\n    pip install timezonefinder\n\n\n.. code-block:: python\n\n    from timezonefinder import TimezoneFinder\n\n    tf = TimezoneFinder()  # reuse\n\n    query_points = [(13.358, 52.5061), ...]\n    for lng, lat in query_points:\n        tz = tf.timezone_at(lng=lng, lat=lat)  # 'Europe/Berlin'\n\n\nFor more refer to the `Documentation <https://timezonefinder.readthedocs.io/en/latest/>`__.\n\nAlso check:\n\n`PyPI <https://pypi.python.org/pypi/timezonefinder/>`__\n\n`online GUI and API <https://timezonefinder.michelfe.it>`__\n\n`conda-forge feedstock <https://github.com/conda-forge/timezonefinder-feedstock>`__\n\nruby port: `timezone_finder <https://github.com/gunyarakun/timezone_finder>`__\n\n`download stats <https://pepy.tech/project/timezonefinder>`__\n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "python package for finding the timezone of any point on earth (coordinates) offline",
    "version": "6.5.5",
    "project_urls": {
        "Documentation": "https://timezonefinder.readthedocs.io/en/latest/",
        "Homepage": "https://timezonefinder.michelfe.it/gui",
        "Repository": "https://github.com/jannikmi/timezonefinder"
    },
    "split_keywords": [
        "timezone",
        " coordinates",
        " latitude",
        " longitude",
        " location",
        " offline",
        " polygon"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "730f4ab833fc2c324dfef3c1158c7aa761e217cdeab685d695ac1de3cbea3eb4",
                "md5": "03586ad7e92aabdb79abd9ab708c6649",
                "sha256": "8adb223f03cb66738d9ae7093920c240be7b81e9e152895767794fae2be6c91c"
            },
            "downloads": -1,
            "filename": "timezonefinder-6.5.5-cp310-cp310-manylinux_2_17_x86_64.manylinux_2_5_x86_64.manylinux1_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "03586ad7e92aabdb79abd9ab708c6649",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<4,>=3.8",
            "size": 50705130,
            "upload_time": "2024-11-20T07:21:40",
            "upload_time_iso_8601": "2024-11-20T07:21:40.544613Z",
            "url": "https://files.pythonhosted.org/packages/73/0f/4ab833fc2c324dfef3c1158c7aa761e217cdeab685d695ac1de3cbea3eb4/timezonefinder-6.5.5-cp310-cp310-manylinux_2_17_x86_64.manylinux_2_5_x86_64.manylinux1_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2edb4ad87fde6d7b0e687417831f81386a5817c35193a74466ff04606ce257b7",
                "md5": "209d57e4f0acca551dba421b741b18f5",
                "sha256": "20ed9831d25c1a1b2239d7b466aca81d33a14591d9c4cf163c32441ba19bbc40"
            },
            "downloads": -1,
            "filename": "timezonefinder-6.5.5-cp311-cp311-manylinux_2_17_x86_64.manylinux_2_5_x86_64.manylinux1_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "209d57e4f0acca551dba421b741b18f5",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<4,>=3.8",
            "size": 50705131,
            "upload_time": "2024-11-20T07:21:45",
            "upload_time_iso_8601": "2024-11-20T07:21:45.628132Z",
            "url": "https://files.pythonhosted.org/packages/2e/db/4ad87fde6d7b0e687417831f81386a5817c35193a74466ff04606ce257b7/timezonefinder-6.5.5-cp311-cp311-manylinux_2_17_x86_64.manylinux_2_5_x86_64.manylinux1_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6081b20b96785ff0a7a4fdab61106da7b365c2ef2c5a9b06dcc6b1939cf11273",
                "md5": "16f61cb5f158e2fa7647bb1d5e94eb96",
                "sha256": "ff3693a0e8b811fd211f4a812a5708982aefd14782c2c8b52de43eff755238f0"
            },
            "downloads": -1,
            "filename": "timezonefinder-6.5.5-cp312-cp312-manylinux_2_17_x86_64.manylinux_2_5_x86_64.manylinux1_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "16f61cb5f158e2fa7647bb1d5e94eb96",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<4,>=3.8",
            "size": 50705385,
            "upload_time": "2024-11-20T07:21:49",
            "upload_time_iso_8601": "2024-11-20T07:21:49.801083Z",
            "url": "https://files.pythonhosted.org/packages/60/81/b20b96785ff0a7a4fdab61106da7b365c2ef2c5a9b06dcc6b1939cf11273/timezonefinder-6.5.5-cp312-cp312-manylinux_2_17_x86_64.manylinux_2_5_x86_64.manylinux1_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9d31f0b876a806b3f7f65590662cb47cc0c10a2a998c1759e5046d263a5430e1",
                "md5": "4d2ad13e54c487b6296731ae973679cd",
                "sha256": "34648bcd5f2f129eddd81c62edbde69fa6b4cb8bd27a34da0f769a50d316b48f"
            },
            "downloads": -1,
            "filename": "timezonefinder-6.5.5-cp313-cp313-manylinux_2_17_x86_64.manylinux_2_5_x86_64.manylinux1_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4d2ad13e54c487b6296731ae973679cd",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<4,>=3.8",
            "size": 50705305,
            "upload_time": "2024-11-20T07:21:54",
            "upload_time_iso_8601": "2024-11-20T07:21:54.419625Z",
            "url": "https://files.pythonhosted.org/packages/9d/31/f0b876a806b3f7f65590662cb47cc0c10a2a998c1759e5046d263a5430e1/timezonefinder-6.5.5-cp313-cp313-manylinux_2_17_x86_64.manylinux_2_5_x86_64.manylinux1_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "eb6a96b03404951eca8333fff005851d678bd3133f1f1a8be3031391affd6202",
                "md5": "2916ef18ac3f979523833981e988b2a3",
                "sha256": "a84b39e29ac4385af72b7ba3a34d2d34191c7b1dbdd7d26315db804abb1033fa"
            },
            "downloads": -1,
            "filename": "timezonefinder-6.5.5-cp38-cp38-manylinux_2_17_x86_64.manylinux_2_5_x86_64.manylinux1_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2916ef18ac3f979523833981e988b2a3",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<4,>=3.8",
            "size": 50705267,
            "upload_time": "2024-11-20T07:21:58",
            "upload_time_iso_8601": "2024-11-20T07:21:58.583775Z",
            "url": "https://files.pythonhosted.org/packages/eb/6a/96b03404951eca8333fff005851d678bd3133f1f1a8be3031391affd6202/timezonefinder-6.5.5-cp38-cp38-manylinux_2_17_x86_64.manylinux_2_5_x86_64.manylinux1_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a4dec352879611e94322182ee3ad865eb0a39119ee7dfbe987a3bdd408da5854",
                "md5": "22decc62ab205771803cc4d85148f402",
                "sha256": "7d0fd0e847e1d613b23198e5f7d8740f04109f35c36ced2aedb602f8d1d04845"
            },
            "downloads": -1,
            "filename": "timezonefinder-6.5.5-cp39-cp39-manylinux_2_17_x86_64.manylinux_2_5_x86_64.manylinux1_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "22decc62ab205771803cc4d85148f402",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<4,>=3.8",
            "size": 50705119,
            "upload_time": "2024-11-20T07:22:04",
            "upload_time_iso_8601": "2024-11-20T07:22:04.808159Z",
            "url": "https://files.pythonhosted.org/packages/a4/de/c352879611e94322182ee3ad865eb0a39119ee7dfbe987a3bdd408da5854/timezonefinder-6.5.5-cp39-cp39-manylinux_2_17_x86_64.manylinux_2_5_x86_64.manylinux1_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c0b09a884e7c2367f6f1c8ffdbd497f29888d06cf335c05989654541a49853bc",
                "md5": "34989e9989639cf03711609d126735d2",
                "sha256": "31a6b6aab0303c1118e7d9743b668acc58403a5192a470b5907ce67a465eeb2b"
            },
            "downloads": -1,
            "filename": "timezonefinder-6.5.5.tar.gz",
            "has_sig": false,
            "md5_digest": "34989e9989639cf03711609d126735d2",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<4,>=3.8",
            "size": 50701764,
            "upload_time": "2024-11-20T07:22:09",
            "upload_time_iso_8601": "2024-11-20T07:22:09.131200Z",
            "url": "https://files.pythonhosted.org/packages/c0/b0/9a884e7c2367f6f1c8ffdbd497f29888d06cf335c05989654541a49853bc/timezonefinder-6.5.5.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-11-20 07:22:09",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "jannikmi",
    "github_project": "timezonefinder",
    "travis_ci": false,
    "coveralls": true,
    "github_actions": true,
    "lcname": "timezonefinder"
}
        
Elapsed time: 0.46922s