simple WSGI request handler (metaframework?)
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.