WebStack

examples/WSGI/SessionsHandler.py

729:00027423df81
2008-06-20 Paul Boddie Added tag rel-1-2-7 for changeset 7d381376cc00
     1 #!/usr/bin/env python     2      3 # Uncomment and adjust the paths below if WebStack is not installed somewhere     4 # on the PYTHONPATH.     5      6 #import sys     7 #sys.path.append("/home/paulb/Software/Python/WebStack")     8 #sys.path.append("/home/paulb/Software/Python/WebStack/examples/Common")     9     10 from WebStack.Adapters.WSGI import deploy_as_cgi    11 from Sessions import SessionsResource    12     13 deploy_as_cgi(SessionsResource(), handle_errors=0)    14     15 # vim: tabstop=4 expandtab shiftwidth=4