timezonefinder


Nametimezonefinder JSON
Version 7.0.1 PyPI version JSON
download
home_pageNone
Summarypython package for finding the timezone of any point on earth (coordinates) offline
upload_time2025-07-24 06:53:23
maintainerNone
docs_urlNone
authorNone
requires_python<4,>=3.9
licenseThe MIT License (MIT) Copyright (c) 2016 Jannik Michelfeit Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
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.


It is recommended to install it together with the optional `Numba <https://numba.pydata.org/>`__ package for increased performance:

Quick Guide:

.. code-block:: console

    pip install timezonefinder[numba]


.. code-block:: python

    from timezonefinder import timezone_at

    tz = timezone_at(lng=13.358, lat=52.5061)  # 'Europe/Berlin'


    # For thread safety, increased performance and control, re-use an instance:
    from timezonefinder import TimezoneFinder

    tf = TimezoneFinder(in_memory=True)  # reuse

    query_points = [(13.358, 52.5061), ...]
    for lng, lat in query_points:
        tz = tf.timezone_at(lng=lng, lat=lat)  # 'Europe/Berlin'


Need maximum speed at the cost of accuracy? Check out `tzfpy <https://github.com/ringsaturn/tzfpy>`__ - a fast alternative based on Rust.



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>`__


LICENSE
-------

``timezonefinder`` is licensed under the `MIT license <https://github.com/jannikmi/timezonefinder/blob/master/LICENSE>`__.

The data is licensed under the `ODbL license <https://github.com/jannikmi/timezonefinder/blob/master/DATA_LICENSE>`__, following the base dataset from `evansiroky/timezone-boundary-builder <https://github.com/evansiroky/timezone-boundary-builder>`__.

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "timezonefinder",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "<4,>=3.9",
    "maintainer_email": null,
    "keywords": "timezone, coordinates, latitude, longitude, location, offline, polygon",
    "author": null,
    "author_email": "jannikmi <github@michelfe.it>",
    "download_url": "https://files.pythonhosted.org/packages/ee/13/271e82d7940a261687089a67e6a5d34059082f1386dc17d8b874a8510ab6/timezonefinder-7.0.1.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\nIt is recommended to install it together with the optional `Numba <https://numba.pydata.org/>`__ package for increased performance:\n\nQuick Guide:\n\n.. code-block:: console\n\n    pip install timezonefinder[numba]\n\n\n.. code-block:: python\n\n    from timezonefinder import timezone_at\n\n    tz = timezone_at(lng=13.358, lat=52.5061)  # 'Europe/Berlin'\n\n\n    # For thread safety, increased performance and control, re-use an instance:\n    from timezonefinder import TimezoneFinder\n\n    tf = TimezoneFinder(in_memory=True)  # 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\nNeed maximum speed at the cost of accuracy? Check out `tzfpy <https://github.com/ringsaturn/tzfpy>`__ - a fast alternative based on Rust.\n\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\nLICENSE\n-------\n\n``timezonefinder`` is licensed under the `MIT license <https://github.com/jannikmi/timezonefinder/blob/master/LICENSE>`__.\n\nThe data is licensed under the `ODbL license <https://github.com/jannikmi/timezonefinder/blob/master/DATA_LICENSE>`__, following the base dataset from `evansiroky/timezone-boundary-builder <https://github.com/evansiroky/timezone-boundary-builder>`__.\n",
    "bugtrack_url": null,
    "license": "The MIT License (MIT)\n        \n        Copyright (c) 2016 Jannik Michelfeit\n        \n        Permission is hereby granted, free of charge, to any person obtaining a copy\n        of this software and associated documentation files (the \"Software\"), to deal\n        in the Software without restriction, including without limitation the rights\n        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n        copies of the Software, and to permit persons to whom the Software is\n        furnished to do so, subject to the following conditions:\n        \n        The above copyright notice and this permission notice shall be included in all\n        copies or substantial portions of the Software.\n        \n        THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n        SOFTWARE.\n        ",
    "summary": "python package for finding the timezone of any point on earth (coordinates) offline",
    "version": "7.0.1",
    "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": null,
            "digests": {
                "blake2b_256": "693dd250cc8fbdfa0126f22267fb52329847205dba2e44ea7b4db51a18eb4923",
                "md5": "c662d389c17c4a846b89f33e54ab2d52",
                "sha256": "d3f4808b3b04042ad9596128a160a528697c5230e89a9b8fa8a50ed3c03ed38b"
            },
            "downloads": -1,
            "filename": "timezonefinder-7.0.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c662d389c17c4a846b89f33e54ab2d52",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<4,>=3.9",
            "size": 52936025,
            "upload_time": "2025-07-24T06:52:45",
            "upload_time_iso_8601": "2025-07-24T06:52:45.511660Z",
            "url": "https://files.pythonhosted.org/packages/69/3d/d250cc8fbdfa0126f22267fb52329847205dba2e44ea7b4db51a18eb4923/timezonefinder-7.0.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "527d30edbfee09015c66dd06588e97586b4e905b1a1ce012aa4f2894a6409db6",
                "md5": "9d964441e699ef3f7cd94f857f584aa2",
                "sha256": "38e56eab2b0faf8280ee9bf2add028fe0ab016e4b2b565c6ff23fe97f3a285ae"
            },
            "downloads": -1,
            "filename": "timezonefinder-7.0.1-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9d964441e699ef3f7cd94f857f584aa2",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<4,>=3.9",
            "size": 52937971,
            "upload_time": "2025-07-24T06:52:49",
            "upload_time_iso_8601": "2025-07-24T06:52:49.745595Z",
            "url": "https://files.pythonhosted.org/packages/52/7d/30edbfee09015c66dd06588e97586b4e905b1a1ce012aa4f2894a6409db6/timezonefinder-7.0.1-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2de69d10c5a00c2c200c1e6c2df398a533081cf993f72f4b3707222f6df51aa4",
                "md5": "c9011e79c80bcb06fa4ad4604f6c9ce0",
                "sha256": "032e126cafabcccf10139feed20e4bbc1e9d01680eb84f4732555ff1180205d6"
            },
            "downloads": -1,
            "filename": "timezonefinder-7.0.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c9011e79c80bcb06fa4ad4604f6c9ce0",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<4,>=3.9",
            "size": 52936021,
            "upload_time": "2025-07-24T06:52:53",
            "upload_time_iso_8601": "2025-07-24T06:52:53.456518Z",
            "url": "https://files.pythonhosted.org/packages/2d/e6/9d10c5a00c2c200c1e6c2df398a533081cf993f72f4b3707222f6df51aa4/timezonefinder-7.0.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bbc5109e1912c718755aa261f48305c242845871b28e177a748b54e66161f0cc",
                "md5": "7202ebff5a99e3da9778f6ef98ac5089",
                "sha256": "6e5cecd3cf4b31a3659e2bc9f7cc17d572a8f888e22560ac6f5619d0d0b102b6"
            },
            "downloads": -1,
            "filename": "timezonefinder-7.0.1-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7202ebff5a99e3da9778f6ef98ac5089",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<4,>=3.9",
            "size": 52938015,
            "upload_time": "2025-07-24T06:52:56",
            "upload_time_iso_8601": "2025-07-24T06:52:56.532818Z",
            "url": "https://files.pythonhosted.org/packages/bb/c5/109e1912c718755aa261f48305c242845871b28e177a748b54e66161f0cc/timezonefinder-7.0.1-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f09bc102d2aec4a7e4cfec4f170b68d926ad9e2382fc49dd150c321bdb2eecb5",
                "md5": "0aa673f7b127f545e3066e864edc1e0f",
                "sha256": "f05a780f9fa459ee08e21718dcd1ca9e2553a45c2f587b2130d687dced863b4e"
            },
            "downloads": -1,
            "filename": "timezonefinder-7.0.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0aa673f7b127f545e3066e864edc1e0f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<4,>=3.9",
            "size": 52936273,
            "upload_time": "2025-07-24T06:53:00",
            "upload_time_iso_8601": "2025-07-24T06:53:00.159863Z",
            "url": "https://files.pythonhosted.org/packages/f0/9b/c102d2aec4a7e4cfec4f170b68d926ad9e2382fc49dd150c321bdb2eecb5/timezonefinder-7.0.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d4e976c5f9ef37220fccef8e541253d53e5294aefbf7130167302ac345595165",
                "md5": "79806fd99e512d9f604bcb0138c85931",
                "sha256": "af59ee7445ebbd26667f1c0c175920bd984db1fbed2be2bdfb5028e6bf0d78c5"
            },
            "downloads": -1,
            "filename": "timezonefinder-7.0.1-cp312-cp312-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "79806fd99e512d9f604bcb0138c85931",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<4,>=3.9",
            "size": 52938324,
            "upload_time": "2025-07-24T06:53:03",
            "upload_time_iso_8601": "2025-07-24T06:53:03.429696Z",
            "url": "https://files.pythonhosted.org/packages/d4/e9/76c5f9ef37220fccef8e541253d53e5294aefbf7130167302ac345595165/timezonefinder-7.0.1-cp312-cp312-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c49d13a28a01adb5335473c781c368b24330b700be7103da8baac9a52813a625",
                "md5": "f883be2aa86cc00efc25147247e7c6f3",
                "sha256": "2a90e7d5b16275c04b87752bac429f59c2889adf7d4b1825a8c6fe0a144d27e1"
            },
            "downloads": -1,
            "filename": "timezonefinder-7.0.1-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f883be2aa86cc00efc25147247e7c6f3",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<4,>=3.9",
            "size": 52936196,
            "upload_time": "2025-07-24T06:53:09",
            "upload_time_iso_8601": "2025-07-24T06:53:09.004695Z",
            "url": "https://files.pythonhosted.org/packages/c4/9d/13a28a01adb5335473c781c368b24330b700be7103da8baac9a52813a625/timezonefinder-7.0.1-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6da2a51fba52f36b9c3f829fcd448f4dd5a703db6c62df03c62227d7b0faab47",
                "md5": "8865ed376471e61048c192a1e2da538b",
                "sha256": "6ebdf1a4390300df83bd5e222e89ea835f4f409394f691608009b28416145142"
            },
            "downloads": -1,
            "filename": "timezonefinder-7.0.1-cp313-cp313-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8865ed376471e61048c192a1e2da538b",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<4,>=3.9",
            "size": 52938250,
            "upload_time": "2025-07-24T06:53:12",
            "upload_time_iso_8601": "2025-07-24T06:53:12.540297Z",
            "url": "https://files.pythonhosted.org/packages/6d/a2/a51fba52f36b9c3f829fcd448f4dd5a703db6c62df03c62227d7b0faab47/timezonefinder-7.0.1-cp313-cp313-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d08e80c79c4cc3a32ae9f695a6882ee3ca1b0b96c2883de3f7a421e8003b7665",
                "md5": "242a39fdb1855f9f68be7c3106f2b85b",
                "sha256": "9d0fa1603ff165110d942449ba1e9e71d4487e32168191e37379625a73bf0974"
            },
            "downloads": -1,
            "filename": "timezonefinder-7.0.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "242a39fdb1855f9f68be7c3106f2b85b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<4,>=3.9",
            "size": 52936019,
            "upload_time": "2025-07-24T06:53:15",
            "upload_time_iso_8601": "2025-07-24T06:53:15.833777Z",
            "url": "https://files.pythonhosted.org/packages/d0/8e/80c79c4cc3a32ae9f695a6882ee3ca1b0b96c2883de3f7a421e8003b7665/timezonefinder-7.0.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9543cdb341bbce9bb06a66a90b8f2f03eeddd06643feb1da5d707445c62f74f7",
                "md5": "624c504f5919491be020bdba57e52455",
                "sha256": "0c8cd166081835ac7b49e2d0c746a93ce843dd40544ac59439603b08a7108670"
            },
            "downloads": -1,
            "filename": "timezonefinder-7.0.1-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "624c504f5919491be020bdba57e52455",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<4,>=3.9",
            "size": 52938014,
            "upload_time": "2025-07-24T06:53:19",
            "upload_time_iso_8601": "2025-07-24T06:53:19.890023Z",
            "url": "https://files.pythonhosted.org/packages/95/43/cdb341bbce9bb06a66a90b8f2f03eeddd06643feb1da5d707445c62f74f7/timezonefinder-7.0.1-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ee13271e82d7940a261687089a67e6a5d34059082f1386dc17d8b874a8510ab6",
                "md5": "5d5a28c2ce747a3f2da865d6a2661dd7",
                "sha256": "72c4e2a16d60039e43bf2bfc2ce00cba826d24d1da83688524ba88ee4e1cb47f"
            },
            "downloads": -1,
            "filename": "timezonefinder-7.0.1.tar.gz",
            "has_sig": false,
            "md5_digest": "5d5a28c2ce747a3f2da865d6a2661dd7",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<4,>=3.9",
            "size": 52910454,
            "upload_time": "2025-07-24T06:53:23",
            "upload_time_iso_8601": "2025-07-24T06:53:23.512603Z",
            "url": "https://files.pythonhosted.org/packages/ee/13/271e82d7940a261687089a67e6a5d34059082f1386dc17d8b874a8510ab6/timezonefinder-7.0.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-07-24 06:53:23",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "jannikmi",
    "github_project": "timezonefinder",
    "travis_ci": false,
    "coveralls": true,
    "github_actions": true,
    "tox": true,
    "lcname": "timezonefinder"
}
        
Elapsed time: 1.86727s