Skip to content

jannikmi/timezonefinder

Folders and files

NameName
Last commit message
Last commit date
Mar 31, 2025
Oct 22, 2024
Jan 22, 2025
Jan 22, 2025
Mar 25, 2025
Apr 28, 2020
Feb 2, 2024
Mar 28, 2023
Mar 25, 2025
Mar 25, 2025
May 5, 2022
May 5, 2022
Sep 20, 2024
Jun 7, 2024
Mar 14, 2024
Mar 28, 2023
Mar 25, 2025
Mar 25, 2025
Feb 2, 2024
Jul 9, 2022
Dec 2, 2024

Repository files navigation

timezonefinder

https://github.com/jannikmi/timezonefinder/actions/workflows/build.yml/badge.svg?branch=master documentation status pre-commit total PyPI downloads latest version on PyPI latest version on conda-forge

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:

pip install timezonefinder
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.

Also check:

PyPI

online GUI and API

conda-forge feedstock

ruby port: timezone_finder

download stats