├── .gitignore ├── .travis.yml ├── AUTHORS ├── CHANGELOG.md ├── LICENSE.txt ├── MANIFEST.in ├── Makefile ├── README.rst ├── dev_requirements.txt ├── example ├── __init__.py ├── app.py ├── settings.py └── urls.py ├── redis_sessions ├── __init__.py ├── session.py └── settings.py ├── setup.py └── tests ├── __init__.py └── tests.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrusev/django-redis-sessions/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrusev/django-redis-sessions/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrusev/django-redis-sessions/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrusev/django-redis-sessions/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrusev/django-redis-sessions/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrusev/django-redis-sessions/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrusev/django-redis-sessions/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrusev/django-redis-sessions/HEAD/README.rst -------------------------------------------------------------------------------- /dev_requirements.txt: -------------------------------------------------------------------------------- 1 | nose 2 | django 3 | redis==4.5.4 4 | -------------------------------------------------------------------------------- /example/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrusev/django-redis-sessions/HEAD/example/app.py -------------------------------------------------------------------------------- /example/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrusev/django-redis-sessions/HEAD/example/settings.py -------------------------------------------------------------------------------- /example/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrusev/django-redis-sessions/HEAD/example/urls.py -------------------------------------------------------------------------------- /redis_sessions/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = '0.6.2' 2 | -------------------------------------------------------------------------------- /redis_sessions/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrusev/django-redis-sessions/HEAD/redis_sessions/session.py -------------------------------------------------------------------------------- /redis_sessions/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrusev/django-redis-sessions/HEAD/redis_sessions/settings.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrusev/django-redis-sessions/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrusev/django-redis-sessions/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrusev/django-redis-sessions/HEAD/tests/tests.py --------------------------------------------------------------------------------