Skip to main content

Django app to add a "position" field to the request, using GeoIP or GPS data given in the request headers

Project description

Django app to add a “position” field to the request, using GeoIP or GPS data given in the request headers. Some references about this:

Quick start

1 Install using pip:

pip install django-belt

2 Add “request_position” to your INSTALLED_APPS settings like this:

INSTALLED_APPS += ('request_position',)

3 Add the middleware:

MIDDLEWARE += (
    'request_position.middleware.RequestPositionMiddleware',
)

Settings

  • REQUEST_POSITION_REMOTE_ADDR_ATTR (default: “REMOTE_ADDR”)

  • REQUEST_POSITION_DEFAULT_IP (default: “127.0.0.1”)

  • REQUEST_POSITION_DEFAULT_POSITION (default: None)

  • REQUEST_POSITION_DEFAULT_COUNTRY_CODE (default: None)

  • REQUEST_POSITION_COOKIE_NAME (default: “_request_position”)

  • REQUEST_POSITION_GEO_HEADER (default: “HTTP_GEOLOCATION”)

  • REQUEST_POSITION_OVERRIDE_LATITUDE_PARAM (default “lat”)

  • REQUEST_POSITION_OVERRIDE_LONGITUDE_PARAM (default “lon”)

  • REQUEST_POSITION_OVERRIDE_COUNTRY_CODE_PARAM (default “cc”)

  • REQUEST_POSITION_USE_GIS_POINT (default False)

History

1.0a5 (2017-2-28)

  • Fixed settings variables prefix.

  • Fixed problem with default REQUEST_POSITION_DEFAULT_COUNTRY_CODE value.

  • Added settings variables to README.

1.0a4 (2017-2-28)

  • Fixed problem with missing REMOTE_ADDR_ATTR setting variable.

1.0a3 (2017-2-28)

  • Fixed problem with missing header.

1.0a2 (2017-2-28)

  • Fixed Django 1.10 compatibility with new middleware.

1.0a1 (2017-2-21)

  • First release on PyPI.

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-request-position-1.0a5.tar.gz (4.9 kB view hashes)

Uploaded Source

Built Distribution

django_request_position-1.0a5-py2.py3-none-any.whl (7.0 kB view hashes)

Uploaded Python 2 Python 3

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