Metadata-Version: 1.1
Name: django-infosessions
Version: 0.2
Summary: A simple Django app to capture session information
Home-page: UNKNOWN
Author: Aleksandr Razumov
Author-email: ernado@ya.ru
License: BSD License
Description: =====
        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.
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
