Metadata-Version: 2.0
Name: django-infosessions
Version: 1.1
Summary: A simple Django app to capture session information
Home-page: UNKNOWN
Author: Aleksandr Razumov
Author-email: ar@cydev.ru
License: BSD License
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Requires-Dist: django (>=1.8)
Requires-Dist: django-redis (>=3.8.3)
Requires-Dist: hiredis (>=0.1.4)

============
InfoSessions
============

Forked from https://github.com/martinrusev/django-redis-sessions

.. image:: https://travis-ci.org/ernado/infosessions.svg?branch=master
    :target: https://travis-ci.org/ernado/infosessions


.. image:: https://badge.fury.io/py/django-infosessions.svg
    :target: http://badge.fury.io/py/django-infosessions


Quick start
-----------

1. Add "infosessions" to your INSTALLED_APPS setting like this::

    INSTALLED_APPS = (
        ...
        'infosessions',
    )

2. Configure django to use infosessions as session engine ::

    SESSION_ENGINE = 'infosessions.session'

3. Add middleware to capture session information ::

    MIDDLEWARE_CLASSES = (
    	...
    	'infosessions.middlewares.SessionSyncMiddleware',
    )

4. Run `python manage.py migrate infosessions` to create the models.


