Skip to main content

Automatic user timezone detection for django

Project description

https://img.shields.io/pypi/v/django-tz-detect.svg https://img.shields.io/pypi/dm/django-tz-detect.svg https://img.shields.io/github/license/adamcharnock/django-tz-detect.svg https://coveralls.io/repos/adamcharnock/django-tz-detect/badge.svg?branch=develop

This app will auto-detect a user’s timezone using JavaScript, then configure Django’s timezone localization system accordingly. As a result, dates shown to users will be in their local timezones.

Authored by Adam Charnock, and some great contributors.

How it works

On the first page view you should find that tz_detect places a piece of asynchronous JavaScript code into your page using the template tag you inserted. The script will obtain the user’s GMT offset using getTimezoneOffset, and post it back to Django. The offset is stored in the user’s session and Django’s timezone awareness is configured in the middleware.

The JavaScript will not be displayed in future requests.

Installation

  1. Either checkout tz_detect from GitHub, or install using pip:

    pip install django-tz-detect
  2. Add tz_detect to your INSTALLED_APPS:

    INSTALLED_APPS += (
        'tz_detect',
    )
  3. Be sure you have the django.template.context_processors.request processor

    TEMPLATES = [
        {
            ...
            'OPTIONS': {
                'context_processors': [
                    ...
                    'django.template.context_processors.request',
                ],
            },
        },
    ]
  4. Update your urls.py file:

    urlpatterns += [
        path('tz_detect/', include('tz_detect.urls')),
    ]
  5. Add the detection template tag to your site, ideally in your base layout just before the </body> tag:

    {% load tz_detect %}
    {% tz_detect %}
  6. Add TimezoneMiddleware to MIDDLEWARE:

    import django
    
    MIDDLEWARE += (
        'tz_detect.middleware.TimezoneMiddleware',
    )
    
    if django.VERSION < (1, 10):
        MIDDLEWARE_CLASSES += (
            'tz_detect.middleware.TimezoneMiddleware',
        )
  7. (Optional) Configure the countries in which your app will be most commonly used:

    # These countries will be prioritized in the search
    # for a matching timezone. Consider putting your
    # app's most popular countries first.
    # Defaults to the top Internet using countries.
    TZ_DETECT_COUNTRIES = ('CN', 'US', 'IN', 'JP', 'BR', 'RU', 'DE', 'FR', 'GB')

Please see example application. This application is used to manually test the functionalities of this package. This also serves as a good example.

You need only Django 1.8 or above to run that. It might run on older versions but that is not tested.

Caveats

  • Django’s timezone awareness will not be available on the first page view

  • This method requires JavaScript

  • Timezone detection is done entirely from the user’s GMT offset, not from their location

Future expansion

  • A hook to allow the timezone to be stored against a user

  • Allow timezones to be manually specified

  • Improve timezone detection

  • Optionally using HTML5’s location API for better timezone determination

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-tz-detect-0.4.0.tar.gz (11.3 kB view details)

Uploaded Source

Built Distribution

django_tz_detect-0.4.0-py3-none-any.whl (11.6 kB view details)

Uploaded Python 3

File details

Details for the file django-tz-detect-0.4.0.tar.gz.

File metadata

  • Download URL: django-tz-detect-0.4.0.tar.gz
  • Upload date:
  • Size: 11.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.0

File hashes

Hashes for django-tz-detect-0.4.0.tar.gz
Algorithm Hash digest
SHA256 ff3ceb2062a2dffaf7d5c20216761c7c4fbbee894c14906bdc93ec6e03e10ffa
MD5 9f620e3b24d5966301f3a16232f37adc
BLAKE2b-256 756603b36aa969d93330556a658f2bcca3511ab594f43ffedf672cc042cfd06d

See more details on using hashes here.

Provenance

File details

Details for the file django_tz_detect-0.4.0-py3-none-any.whl.

File metadata

  • Download URL: django_tz_detect-0.4.0-py3-none-any.whl
  • Upload date:
  • Size: 11.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.0

File hashes

Hashes for django_tz_detect-0.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 ca3842b9d92ed3aff3c783430d79fd66785c722ca942fabeaf5f9008f35c8124
MD5 e82ac69e5dcb9bcfbda20d6de5797a3f
BLAKE2b-256 f5e2cc9bee78c8edde6fce8fd9ca60b1096d9b8797a11870420b8f9b89814077

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page