=====================
Colubrid WSGI Toolkit
=====================
Colubrid is a WSGI request handler which simplifies python web developement.
If you've ever created a WSGI application without an framework or an request
handler you know how stupid this can be.
Hello World Example
===================
This example outputs "Hello World"::
from colubrid import BaseApplication, HttpResponse
class HelloWorld(BaseApplication):
def process_request(self):
return HttpResponse('Hello World!')
app = HelloWorld
Documentation can be found on `the homepage`_.
.. _the homepage: http://wsgiarea.pocoo.org/colubrid/documentation/