WebStack

examples/CGI/CookiesHandler.py

112:7c2fd5f61d01
2004-04-24 paulb [project @ 2004-04-24 20:34:22 by paulb] Added CGI examples.
     1 #!/usr/bin/env python     2      3 # NOTE: Path manipulation requires manual customisation.     4      5 import sys     6 sys.path.append("/home/paulb/Software/Python/WebStack")     7 sys.path.append("/home/paulb/Software/Python/WebStack/examples/Common")     8      9 from WebStack.Adapters import CGI    10 from Cookies import CookiesResource    11     12 resource = CookiesResource()    13 CGI.respond(resource)    14     15 # vim: tabstop=4 expandtab shiftwidth=4