/django-geoip-ext

Primary LanguagePythonGNU General Public License v3.0GPL-3.0

Django Geoip-ext

Codacy Badge Build Status

Requirement

  • Python >= 3.5
  • Django >= 1.11
  • no support Python 2

Install

git clone https://github.com/edison7500/django-geoip-ext.git
cd path/to/django-geoip-ext
python setup.py install

Usage


INSTALLED_APPS = [
    ...    
    "geoip_ext",
    ...
]

MIDDLEWARE = [
    ...
    "geoip_ext.middleware.GeoIPMiddleware",
    ...
]


GEOIP_PATH_MMDB = "/path/to/geoip2.mmdb"