Metadata-Version: 1.1
Name: django-request-position
Version: 1.0a1
Summary: Django app to add a "position" field to the request, using GeoIP or GPS data given in the request headers
Home-page: https://github.com/marcosgabarda/django-request-position
Author: Marcos Gabarda
Author-email: hey@marcosgabarda.com
License: MIT License
Description: =======================
        Django Request Position
        =======================
        
        Django app to add a "position" field to the request, using GeoIP or GPS data given in the request headers. Some
        references about this:
        
        * `A Uniform Resource Identifier for Geographic Locations ('geo' URI) <http://tools.ietf.org/rfc/rfc5870>`_.
        * `HTTP Geolocation draft-thomson-geopriv-http-geolocation-00 <http://tools.ietf.org/html/draft-thomson-geopriv-http-geolocation-00>`_.
        
        
        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',
            )
        
        
        
        
        History
        -------
        
        1.0a1 (2017-2-21)
        +++++++++++++++++
        
        * First release on PyPI.
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Utilities
