Skip to main content

Python module writing class-based route handlers in bottle.

Project description

Documentation Status Development documentation Status

This project is a collection of classes for writing complex, modullar, and/or reusable route handlers using bottle web framework.

Even though ‘complex route handlers’ may seem like an oximoron, there may be situations where support for multiple parameters are needed or where a simple branching in the route handler code may completely change the logic of your route handler. If you find yourself running into this type of situation and struggle to organize the code, you may find bottle-streamline is a good fit for your project.

Quick example

Example of a classic Hello world app:

import bottle
from streamline import RouteBase


class Hello(BaseRoute):
    def get(self):
        return 'Hello world!'


Hello.route('/')
bottle.run()

Documentation

You will find the complete documentation and tutorials on ReadTheDocs.

Project details


Download files

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

Source Distributions

bottle-streamline-1.0.post3.zip (12.6 kB view hashes)

Uploaded Source

bottle-streamline-1.0.post3.tar.gz (7.9 kB view hashes)

Uploaded Source

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