Colubrid WSGI Publisher

armin.ronacher at active-4.com armin.ronacher at active-4.com
Wed Feb 22 06:19:15 CET 2006


=====================
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, execute

    class HelloWorld(BaseApplication):
        def process_request(self):
            self.request.write('Hello World')

    app = HelloWorld

    if __name__ == '__main__':
        execute()

Documentation can be found on `the homepage`_.

.. _the homepage: http://wsgiarea.pocoo.org/colubrid/documentation/

WSGI Compatibility
==================

Colubrid is full compatible the existing WSGI Systems, for example you
can bind the flup session middleware into Colubrid with 5 lines of
code.

You can download colubrid from the `download section`_.

.. _download section: http://wsgiarea.pocoo.org/colubrid/downloads/



More information about the Python-announce-list mailing list