WebStack

examples/Twisted/LoginApp.py

660:e1211a95a44f
2007-09-27 paulb [project @ 2007-09-27 17:48:43 by paulb] Tidied up the javadoc strings.
     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