django-session-timeout 0.1.0

Creator: codyrutscher

Last updated:

Add to Cart

Description:

djangosessiontimeout 0.1.0

django-session-timeout
Add timestamp to sessions to expire them independently
Installation
pip install django-session-timeout

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_SECONDS:
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:
SESSION_EXPIRE_AFTER_LAST_ACTIVITY = True

By default, last activiy will be grouped per second.
To group by different period use the following setting:
SESSION_EXPIRE_AFTER_LAST_ACTIVITY_GRACE_PERIOD = 60 # group by minute

To redirect to a custom URL define the following setting:
SESSION_TIMEOUT_REDIRECT = 'your_redirect_url_here/'

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.