=====================
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/

-- 
http://mail.python.org/mailman/listinfo/python-announce-list

        Support the Python Software Foundation:
        http://www.python.org/psf/donations.html

Reply via email to