Skip to main content

WSGI sessions implentation (session id in a cookie).

Project description

WSGISession provides an easy way to deal with sessions in any WSGI compilant application. This middleware is useful always you want to store user sessions of a user, understanding that this user will store the session id in a cookie. It’s up to you how to save and retrieve the session object.

In order to do so, we offer the middleware and the session object, but you need to provide the session factory object, whose role is to save and retrieve sessions from wherever they are. Here’s an example:

#!/usr/bin/env python

from wsgiref.simple_server import make_server from wsgisession import SessionMiddleware

class ExampleFactory(object):
def load(self, id=None):

session = Session() # whatever needed to retireve session object session.data = {‘dummy’: ‘key’} session.id = ‘123’ return session

def save(self, session):

# save the session.data, possibly generating session.id return session.id

def wrapped_app(environ, start_response):

session = environ.get(‘wsgisession’) session[‘counter’] = session.get(‘counter’, 0) + 1 start_response(‘200 OK’, [(‘Content-Type’, ‘text/html’)]) return ‘Visited %s timesn’ % session[‘counter’]

factory = ExampleFactory() app = SessionMiddleware(wrapped_app, factory)

if __name__ == ‘__main__’:

httpd = make_server(‘localhost’, 8080, app) httpd.serve_forever()

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

WSGISession-0.1.0.tar.gz (3.0 kB view details)

Uploaded Source

File details

Details for the file WSGISession-0.1.0.tar.gz.

File metadata

  • Download URL: WSGISession-0.1.0.tar.gz
  • Upload date:
  • Size: 3.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for WSGISession-0.1.0.tar.gz
Algorithm Hash digest
SHA256 f41df3abc2fb2d9ffe6dfcd48e264fad63a40041c94839802f5bc87ca2f22526
MD5 a1c36f2a6c7f16a57a0f9ddd4d7956d8
BLAKE2b-256 ae13821c4e7c35f5f9c79c2d5398758445941ae22d6322a72a2cae3d6ec64f1e

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page