WebStack

examples/Twisted/LoginApp.py

383:74ed715c5455
2005-05-01 paulb [project @ 2005-05-01 18:16:52 by paulb] Added missing example for Zope.
     1 #!/usr/bin/env python     2      3 from WebStack.Adapters.Twisted import deploy     4 from WebStack.Resources.Login import LoginResource, LoginAuthenticator     5      6 print "Serving..."     7 deploy(     8     LoginResource(     9         LoginAuthenticator(    10             secret_key="horses",    11             credentials=(    12                 ("badger", "abc"),    13                 ("vole", "xyz"),    14             )    15         )    16     ),    17     address=("", 8081)    18 )    19     20 # vim: tabstop=4 expandtab shiftwidth=4