Skip to main content

simple WSGI publisher

Project description

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.

Project details


Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page