WebStack

examples/WSGI/SessionsHandler.py

728:7d381376cc00
2007-10-28 paulb [project @ 2007-10-28 22:22:07 by paulb] Updated release information.
     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