Skip to main content

Minimal routing extension for Flask

Project description

Build Status Downloads Latest Version Supported Python versions License

Flask-Mux is a lightweight Flask extension that provides a routing system similar to that of Express.js. It basically wraps Flask’s url route registrations API to add more flexibility.

Installing

Install using pip:

$ pip install Flask-Mux

A Simple Example

from flask import Flask
from flask_mux import Mux, Router

app = Flask(__name__)
mux = Mux(app)

def home():
    return 'home'

def about():
    return 'about'

index_router = Router()
index_router.get('/', home)
index_router.get('/about', about)

mux.use('/', index_router)

User’s Guide

You’ll find the user guide and all documentation here

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

Flask-Mux-0.0.3.tar.gz (6.4 kB view hashes)

Uploaded Source

Built Distribution

Flask_Mux-0.0.3-py3-none-any.whl (7.1 kB view hashes)

Uploaded Python 3

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