Skip to content

ip2location/django-ip2location-timezone

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Django IP2Location Time Zone

Django IP2Location Time Zone package enables you easily display your website visitor the time baased on their geo location derived from the IP address. This package uses IP2Location Web Service for IP lookup and time zone information.

Requirements

  1. Python 2.7 and above.
  2. Django 1.11 and above.
  3. IP2Location Web Service API Key. You can get a trial API key from IP2Location.com.

Quick Start

  1. Install this package from PyPI:

    pip install django-ip2location-timezone
  2. Add "ip2location_timezone" to your INSTALLED_APPS setting in settings.py:

    INSTALLED_APPS = (
      ...
      'ip2location_timezone',
    )
  3. Add "IP2locationTimezoneMiddleware" to your MIDDLEWARE_CLASSES in settings.py:

    MIDDLEWARE_CLASSES = (
      ...
      'ip2location_timezone.middleware.IP2locationTimezoneMiddleware',
    )
  4. Add your IP2Location Web Service API Key in settings.py:

    IP2LOCATION_API_KEY = 'YOUR_API_KEY'
  5. In your template, add the following code to display the user time zone and current time:

    {% load tz %}
    {% localtime on %}
    	{% get_current_timezone as TIME_ZONE %}
    	Your timezone is {{ TIME_ZONE }}.<br/><br/>
    	It is {% now "DATETIME_FORMAT" %}
    {% endlocaltime %}

Support

Email: [email protected].

URL: https://www.ip2location.com

About

A simple Django package that can help you easily display your website visitor the time according to their location.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages