| Home | Trees | Indices | Help |
|
|---|
|
|
This module provides a way to use Smisk as a WSGI backend.
Conforms to PEP 333
Simple example:
>>> from smisk.wsgi import Gateway >>> def hello_app(env, start_response): >>> start_response("200 OK", []) >>> return ["Hello, World"] >>> >>> Gateway(hello_app).run()
See Also: http://www.python.org/dev/peps/pep-0333/
| Classes | |
|
Request WSGI request |
|
|
Gateway This is the Smisk WSGI adapter |
|
| Functions | |||
|
|||
| Home | Trees | Indices | Help |
|
|---|
| Generated by Epydoc 3.0.1 on Sun May 11 20:25:43 2008 | http://epydoc.sourceforge.net |