Skip to content

josezambrana/Django-GAE-Sessions

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 

Repository files navigation

Django GAE Sessions

Django GAE Sessions is a Django session engine to work with Google App Engine.

Installing Django GAE Sessions

  1. Copy the sessions directory to your App Engine project directory, or as a zip, so Python's zipimporter can find it.

  2. Uncomment the line in settings.py:

     MIDDLEWARE_CLASSES = (
     ...
         'django.contrib.sessions.middleware.SessionMiddleware',
     ...
     )
    
  3. Set the SESSION_ENGINE setting to:

     SESSION_ENGINE = 'sessions.engine'
    

    or if you place your external dependencies in a folder like lib, you can write:

     SESSION_ENGINE = 'lib.sessions.engine'
    

That's it.

About

Manage Sessions with django and google app engine

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%