User sessions for Django
Project description
Django includes excellent built-in sessions, however all the data is hidden away into a base64 encoded data string. This makes it very difficult to run a query on all active sessions for a particular user. Django User Sessions fixes this and makes session objects just as queryable as other objects.
To get the list of a user’s sessions:
user.session_set.filter(expire_date__gt=now())
Or logout the user everywhere:
user.session_set.all().delete()
The user’s IP address and user agent are also stored on the session. This allows to show a list of active sessions to the user in the admin:
And also in a custom layout:
Installation
pip install django-user-sessions
In INSTALLED_APPS replace 'django.contrib.sessions' with 'user_sessions'.
In MIDDLEWARE_CLASSES replace 'django.contrib.sessions.middleware.SessionMiddleware' with 'user_sessions.middleware.SessionMiddleware'.
Add SESSION_ENGINE = 'user_sessions.backends.db'.
Run python manage.py syncdb and start hacking!
GeoIP
You need to setup GeoIP for the location detection to work. See the Django documentation on installing GeoIP.
Demo application
Also, have a look at the demo application. It includes template examples and shows how to use the session list and delete views.
Compatibility
Tested on Django 1.6 with Python 2.7 and 3.3. However it should work fine on Django 1.4 and above.
Contributing
Fork the repository on GitHub and start hacking
Send a pull request with your changes
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Hashes for django-user-sessions-0.1.0-beta.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1891ceda055d5af90d77a8d71df2759879a42c9059fb9014e846999ad7886870 |
|
MD5 | 8c6898dab696c25f960e49771f6275c3 |
|
BLAKE2b-256 | 5dd3daa09648bedd59de2dfb9cda824a889f4dfe75384c0812e3ded6d7c6ac2e |