Name | timezonefinder JSON |
Version |
8.0.0
JSON |
| download |
home_page | None |
Summary | python package for finding the timezone of any point on earth (coordinates) offline |
upload_time | 2025-08-12 08:29:19 |
maintainer | None |
docs_url | None |
author | None |
requires_python | <4,>=3.9 |
license | The 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.
Quick Guide
-----------
It is recommended to install it together with the optional `Numba <https://numba.pydata.org/>`__ package for increased performance:
.. 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/Paris'
# 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/Paris'
.. note::
This library uses a dataset optimized for the primary use case of timezone determination for current/future time calculations. For applications requiring historical accuracy or resolving to precise locations, consider parsing the original dataset (cf. Chapter "Data Format" in the Documentation).
Need maximum speed at the cost of accuracy? Check out `tzfpy <https://github.com/ringsaturn/tzfpy>`__ - a fast alternative based on Rust.
References
----------
* `Documentation <https://timezonefinder.readthedocs.io/en/latest/>`__
* `PyPI <https://pypi.python.org/pypi/timezonefinder/>`__
* `conda-forge feedstock <https://github.com/conda-forge/timezonefinder-feedstock>`__
* `download stats <https://pepy.tech/project/timezonefinder>`__
* `online GUI and API <https://timezonefinder.michelfe.it>`__
* `GUI repository <https://github.com/jannikmi/timezonefinder_gui>`__
* `ruby port <https://github.com/gunyarakun/timezone_finder>`__
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/fb/f7/e668906de70c87399f00eb30e733213cf71adb22b9d57010c12a451e61b1/timezonefinder-8.0.0.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\nIt is recommended to install it together with the optional `Numba <https://numba.pydata.org/>`__ package for increased performance:\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/Paris'\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/Paris'\n\n\n\n.. note::\n\n This library uses a dataset optimized for the primary use case of timezone determination for current/future time calculations. For applications requiring historical accuracy or resolving to precise locations, consider parsing the original dataset (cf. Chapter \"Data Format\" in the Documentation).\n\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\nReferences\n----------\n\n* `Documentation <https://timezonefinder.readthedocs.io/en/latest/>`__\n* `PyPI <https://pypi.python.org/pypi/timezonefinder/>`__\n* `conda-forge feedstock <https://github.com/conda-forge/timezonefinder-feedstock>`__\n* `download stats <https://pepy.tech/project/timezonefinder>`__\n* `online GUI and API <https://timezonefinder.michelfe.it>`__\n* `GUI repository <https://github.com/jannikmi/timezonefinder_gui>`__\n* `ruby port <https://github.com/gunyarakun/timezone_finder>`__\n\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": "8.0.0",
"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": "9138717ca25630b0b8ba5a9a03c61d65485cce0fd3bf45ef3faacc714b785fc4",
"md5": "f99d93cef547718dd89726e5524bbb7a",
"sha256": "ffbe860f478d976bae342ca08aa0ca3b1f0dee15bc164800b39c335c320b5de7"
},
"downloads": -1,
"filename": "timezonefinder-8.0.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "f99d93cef547718dd89726e5524bbb7a",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": "<4,>=3.9",
"size": 28017539,
"upload_time": "2025-08-12T08:28:43",
"upload_time_iso_8601": "2025-08-12T08:28:43.598482Z",
"url": "https://files.pythonhosted.org/packages/91/38/717ca25630b0b8ba5a9a03c61d65485cce0fd3bf45ef3faacc714b785fc4/timezonefinder-8.0.0-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": "4bde88eaeb809dd83ec8b22f808178500017a80bef21f8624887355e54e95f0d",
"md5": "f0cd355a083f5a0deaae48a07fcde6d6",
"sha256": "b5d2a5253e049a51b9ccc7050c29289948e9cd8c9bb9d2f3752ac873c46ee56e"
},
"downloads": -1,
"filename": "timezonefinder-8.0.0-cp310-cp310-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "f0cd355a083f5a0deaae48a07fcde6d6",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": "<4,>=3.9",
"size": 28019475,
"upload_time": "2025-08-12T08:28:47",
"upload_time_iso_8601": "2025-08-12T08:28:47.462280Z",
"url": "https://files.pythonhosted.org/packages/4b/de/88eaeb809dd83ec8b22f808178500017a80bef21f8624887355e54e95f0d/timezonefinder-8.0.0-cp310-cp310-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7c8634391d64b9fba203615b21c7a68574841a021576954e142febcc8acd7d12",
"md5": "42b7da47c81c77e2f741ac763977654c",
"sha256": "412bd68647969de715f766355477e04b5379c5349d5e7d6f8a633370495904e5"
},
"downloads": -1,
"filename": "timezonefinder-8.0.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "42b7da47c81c77e2f741ac763977654c",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": "<4,>=3.9",
"size": 28017536,
"upload_time": "2025-08-12T08:28:50",
"upload_time_iso_8601": "2025-08-12T08:28:50.748001Z",
"url": "https://files.pythonhosted.org/packages/7c/86/34391d64b9fba203615b21c7a68574841a021576954e142febcc8acd7d12/timezonefinder-8.0.0-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": "ba7966cbec5fefdb4a7ad74ac6cd7fe005a0edea0ab209c6b1825bcae71763ac",
"md5": "23782fdee79cf12b0ecd961e17bec513",
"sha256": "ebb647f568a5b859f3e6fff2b866528ebe92d4b33e2146931c6f98b0da1985e2"
},
"downloads": -1,
"filename": "timezonefinder-8.0.0-cp311-cp311-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "23782fdee79cf12b0ecd961e17bec513",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": "<4,>=3.9",
"size": 28019517,
"upload_time": "2025-08-12T08:28:53",
"upload_time_iso_8601": "2025-08-12T08:28:53.638949Z",
"url": "https://files.pythonhosted.org/packages/ba/79/66cbec5fefdb4a7ad74ac6cd7fe005a0edea0ab209c6b1825bcae71763ac/timezonefinder-8.0.0-cp311-cp311-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "434b6cc9459cd533a2b16400d0bb0bb99d5bf2d71941748ddc297a0a72269b74",
"md5": "4053a9a33cc7599fbcd7cf98123838e9",
"sha256": "40d061db0871f612bf958825743d6e4fe74ef62940f0f83c650b90832b5bc190"
},
"downloads": -1,
"filename": "timezonefinder-8.0.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "4053a9a33cc7599fbcd7cf98123838e9",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": "<4,>=3.9",
"size": 28017787,
"upload_time": "2025-08-12T08:28:56",
"upload_time_iso_8601": "2025-08-12T08:28:56.922588Z",
"url": "https://files.pythonhosted.org/packages/43/4b/6cc9459cd533a2b16400d0bb0bb99d5bf2d71941748ddc297a0a72269b74/timezonefinder-8.0.0-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": "9c963b4f15ff6a922f84d467cce4f03441e2855d1d4fc82c4591799f7e1a9972",
"md5": "3b4331b5a8576d6b2612797fa6b786bd",
"sha256": "00a1b2e681c182ed492280ab0da6343b5a064ad6a1f8ad5a69f94465ccb74ec6"
},
"downloads": -1,
"filename": "timezonefinder-8.0.0-cp312-cp312-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "3b4331b5a8576d6b2612797fa6b786bd",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": "<4,>=3.9",
"size": 28019828,
"upload_time": "2025-08-12T08:29:00",
"upload_time_iso_8601": "2025-08-12T08:29:00.121957Z",
"url": "https://files.pythonhosted.org/packages/9c/96/3b4f15ff6a922f84d467cce4f03441e2855d1d4fc82c4591799f7e1a9972/timezonefinder-8.0.0-cp312-cp312-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0bf91699c63e41538b09b67228bd20a6f7b19c6c6f2cac60da86dd018ad8cd96",
"md5": "fdf28afc6f437a6b9fcd8a4850556a6e",
"sha256": "ddfe811320afda1b6fac4318e787185cee1fed7d2b3a14b09a143783f7f75fa8"
},
"downloads": -1,
"filename": "timezonefinder-8.0.0-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "fdf28afc6f437a6b9fcd8a4850556a6e",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": "<4,>=3.9",
"size": 28017710,
"upload_time": "2025-08-12T08:29:02",
"upload_time_iso_8601": "2025-08-12T08:29:02.964593Z",
"url": "https://files.pythonhosted.org/packages/0b/f9/1699c63e41538b09b67228bd20a6f7b19c6c6f2cac60da86dd018ad8cd96/timezonefinder-8.0.0-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": "57e3e01c788c9367d231e9f31a5dd025faae5fc219d9ddc82b595725b100d31b",
"md5": "9e76235d69cbf825b56a75df29746aa0",
"sha256": "2564aecc6d38e5639c2bfb55af7b245070a1b1186d9580d6a8b0274344b3e99e"
},
"downloads": -1,
"filename": "timezonefinder-8.0.0-cp313-cp313-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "9e76235d69cbf825b56a75df29746aa0",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": "<4,>=3.9",
"size": 28019750,
"upload_time": "2025-08-12T08:29:06",
"upload_time_iso_8601": "2025-08-12T08:29:06.154338Z",
"url": "https://files.pythonhosted.org/packages/57/e3/e01c788c9367d231e9f31a5dd025faae5fc219d9ddc82b595725b100d31b/timezonefinder-8.0.0-cp313-cp313-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "14a8889ddcae51807a22eb2848c978d453ad6f331d3abf92e72d8a89a6cb4ccb",
"md5": "74737ac5a2cf1bbe06915ed5e2a86727",
"sha256": "edaa36149dfa2436472c5ae644fbf5e8c7de3097da28b70fb12fad9d0ff0d3cf"
},
"downloads": -1,
"filename": "timezonefinder-8.0.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "74737ac5a2cf1bbe06915ed5e2a86727",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": "<4,>=3.9",
"size": 28017533,
"upload_time": "2025-08-12T08:29:09",
"upload_time_iso_8601": "2025-08-12T08:29:09.327866Z",
"url": "https://files.pythonhosted.org/packages/14/a8/889ddcae51807a22eb2848c978d453ad6f331d3abf92e72d8a89a6cb4ccb/timezonefinder-8.0.0-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": "a45937fcc396f7a4c7c54637ee16843a0b58dca2e8b3c55588f2a70a67314b5b",
"md5": "019960e91ff6ec91420d4ca862f77381",
"sha256": "10faae3e0e124fa3e31a7f3b2c97371be8a65d5221de39814b30702119386e0f"
},
"downloads": -1,
"filename": "timezonefinder-8.0.0-cp39-cp39-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "019960e91ff6ec91420d4ca862f77381",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": "<4,>=3.9",
"size": 28019517,
"upload_time": "2025-08-12T08:29:15",
"upload_time_iso_8601": "2025-08-12T08:29:15.959892Z",
"url": "https://files.pythonhosted.org/packages/a4/59/37fcc396f7a4c7c54637ee16843a0b58dca2e8b3c55588f2a70a67314b5b/timezonefinder-8.0.0-cp39-cp39-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fbf7e668906de70c87399f00eb30e733213cf71adb22b9d57010c12a451e61b1",
"md5": "da1de3b1e087bb688c990283a7a66288",
"sha256": "a88beb09a8e24d32b522c9e70c37d633697477e7c436dfaebe24d8e155c81bbb"
},
"downloads": -1,
"filename": "timezonefinder-8.0.0.tar.gz",
"has_sig": false,
"md5_digest": "da1de3b1e087bb688c990283a7a66288",
"packagetype": "sdist",
"python_version": "source",
"requires_python": "<4,>=3.9",
"size": 28023778,
"upload_time": "2025-08-12T08:29:19",
"upload_time_iso_8601": "2025-08-12T08:29:19.492090Z",
"url": "https://files.pythonhosted.org/packages/fb/f7/e668906de70c87399f00eb30e733213cf71adb22b9d57010c12a451e61b1/timezonefinder-8.0.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-08-12 08:29:19",
"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"
}