Metadata-Version: 1.1
Name: django-session-timeout
Version: 0.0.2
Summary: Middleware to expire sessions after specific amount of time
Home-page: https://github.com/LabD/django-session-timeout
Author: Lab Digital
Author-email: opensource@labdigital.nl
License: MIT
Description-Content-Type: UNKNOWN
Description: ======================
        django-session-timeout
        ======================
        
        
        Status
        ======
        .. image:: https://travis-ci.org/LabD/django-session-timeout.svg?branch=master
            :target: https://travis-ci.org/LabD/django-session-timeout
        
        .. image:: http://codecov.io/github/LabD/django-session-timeout/coverage.svg?branch=master
            :target: http://codecov.io/github/LabD/django-session-timeout?branch=master
        
        .. image:: https://img.shields.io/pypi/v/django-session-timeout.svg
            :target: https://pypi.python.org/pypi/django-session-timeout/
        
        
        Installation
        ============
        
        .. code-block:: shell
        
           pip install django-session-timeout
        
        
        Usage
        =====
        
        Update your settings to add the SessionTimeoutMiddleware:
        
        .. code-block:: python
        
            MIDDLEWARE_CLASSES = [
                # ...
                'django.contrib.sessions.middleware.SessionMiddleware',
                'django_session_timeout.middleware.SessionTimeoutMiddleware',
                # ...
            ]
        
        
        And also add the ``SESSION_EXPIRE_SECONDS``:
        
        
        .. code-block:: python
        
            SESSION_EXPIRE_SECONDS = 3600  # 1 hour
        
        
        By default, the session will expire X seconds after the start of the session.
        To expire the session X seconds after the `last activity`, use the following setting:
        
        .. code-block:: python
        
            SESSION_EXPIRE_AFTER_LAST_ACTIVITY = True
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.11
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
