Metadata-Version: 1.1
Name: django-rethinkdb-sessions
Version: 0.0.3
Summary: rethinkdb backed sessions for django
Home-page: http://github.com/maxpresman/django-rethinkdb-sessions
Author: Max Presman
Author-email: max@presman.ca
License: MIT
Description: django-rethinkdb-sessions 
        =========================
        
        .. image:: https://travis-ci.org/MaxPresman/django-rethinkdb-sessions.png
           :target: https://travis-ci.org/MaxPresman/django-rethinkdb-sessions
        
        
        Django session backend for rethinkdb.
        
        ------------
        Installation
        ------------
        
        1. install the package by pypi
            pip install django-rethinkdb-sessions
        2. in django settings, switch the session over to rethinkdb-sessions
            SESSION_ENGINE = 'rethinkdb_sessions.main'
        3. configure the following settings to adjust the rethinkdb enviorment
            - "SESSION_RETHINK_HOST" -- host that rethinkdb is currently running on.
            - "SESSION_RETHINK_PORT" -- current rethinkdb port
            - "SESSION_RETHINK_DB"   -- rethinkdb database
            - "SESSION_RETHINK_TABLE" -- rethinkdb table
            - "SESSION_RETHINK_AUTH"  -- rethinkdb auth key (if exists)
        
        -------------
        Running Tests
        -------------
        
        Tests are included, invoke tests by running
            "python tests/tests.py"
        
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
