Skip to main content

Yet another WSGI web app framework

Project description

thruflo.webapp is a WSGI compatible web application framework. It has no test coverage and is no doubt flawed. But it has the advantage of being setup just the way I want it:

  • re.compile based url mapping

  • class instances handling requests with methods that correspond to the HTTP Request’s method, e.g.: def post(self) handles a POST request

  • a webob.Request as self.request

  • return foo as the method of responding, where foo can be a string, a webob.Response, or a list or dict to be returned as JSON

  • mako templates with builtin methods including static_url, xsrf_form_html and escape, as well as references to handler and request

Or to put it another way:

from thruflo.webapp import web

class Hello(web.RequestHandler):
    def get(self):
        return 'hello world'



mapping = [('/.*', Hello)]
application = web.WSGIApplication(mapping)

See thruflo.webapp.demo for a slightly fleshed out example usage.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

thruflo.webapp-0.1.1.tar.gz (11.5 kB view details)

Uploaded Source

File details

Details for the file thruflo.webapp-0.1.1.tar.gz.

File metadata

File hashes

Hashes for thruflo.webapp-0.1.1.tar.gz
Algorithm Hash digest
SHA256 4ffb1d86b8090c6ac40a4f2212c300f2f6345220c051b32eb5b530720dda5a0a
MD5 6a014ef5b92c4855d965f35dc4555af3
BLAKE2b-256 f5cdcf3f1064c1c2edb5c145e644135e5d5632f313de8ca30afb694b89738eb9

See more details on using hashes here.

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