Skip to main content

Middleware to expire sessions after specific amount of time

Project description

django-session-timeout

Add timestamp to sessions to expire them independently

Installation

pip install django-session-timeout-joinup

Usage

Update your settings to add the SessionTimeoutMiddleware:

MIDDLEWARE_CLASSES = [
    # ...
    'django.contrib.sessions.middleware.SessionMiddleware',
    'django_session_timeout.middleware.SessionTimeoutMiddleware',
    # ...
]

And also add the SESSION_EXPIRE_MAXIMUM_SECONDS:

SESSION_EXPIRE_MAXIMUM_SECONDS = 28800  # 8 hours

By default, the session will expire X seconds since the user do login.

SESSION_EXPIRE_SECONDS = 3600  # 1 hour

The session will expire X seconds after the start of the session or renew it. To renew the session X seconds after expire, use the following setting:

SESSION_EXPIRE_AFTER_LAST_ACTIVITY_GRACE_PERIOD = 1800  # 30 minutes

To redirect to a custom URL define the following setting:

SESSION_TIMEOUT_REDIRECT = 'your_redirect_url_here/'

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-session-timeout-joinup-1.0.0.tar.gz (4.0 kB view hashes)

Uploaded Source

Built Distribution

django_session_timeout_joinup-1.0.0-py2.py3-none-any.whl (4.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