Skip to main content

Provides a clean, simple URL routing framework for growing Flask Applications.

Project description

Flask-Via

Inspired by the Django URL configuration system, Flask-Via is designed to add similar functionality to Flask applications which have grown beyond a simple single file application.

Travis build status on Master Branch Test Coverage Code Health Latest PyPI version Number of PyPI downloads MIT License

Example

from flask import Flask
from flask.ext.via import Via
from flask.ext.via.routers.default import Functional

app = Flask(__name__)

def foo(bar=None):
    return 'Foo View!'

routes = [
    Functional('/foo', foo),
    Functional('/foo/<bar>', foo, endpoint='foo2'),
]

via = Via()
via.init_app(app, route_module='flask_via.examples.basic')

if __name__ == "__main__":
    app.run(debug=True)

Why?

Growing your application can be quite difficult when it’s not always clear where and how your routes are discovered. This can lead to a cluttered application factory method when all your routes are defined at application creation - resulting in code which is difficult to maintain, not to mention messy.

A better solution is to define your routes in a routes.py and automatically load them at application start up. This is what Flask-Via helps to do.

Third party Flask extensions don’t always follow the same conventions for adding routes to an application, so Flask-Via has been designed to be easy for developers to write their own custom routers. For an example of this, take a look at the bundled Flask-Restful Resource router.

If you do write a custom router that is useful to you, it will probably be useful to someone else so please do contribute back :)

Change Log

2014.05.19.1

  • Hotfix: Fixed issue where routes would be reregistered with an app incorrectly in the event of multiple app creations

2014.05.19

  • Feature: Include now supports endpoint prefixing

  • Feature: Blueprint router can now take a blueprint instance

  • Feature: Added support for VIA_ROUTES_NAME to set a common routes name

  • Deprecated: Basic Router in favour of the Functional router

  • Improved: Pluggable Router API is now cleaner

  • Improved: Test Suite now uses PyTest

  • Improved: ImproperlyConfigured now raised if routes module is not defined in either init_app or in application configuration via VIA_ROUTES_MODULE

2014.05.08

  • Feature: Flask Admin Router

  • Feature: Include url_prefix option

2014.05.06

  • Feature: Flask extension initialisation

  • Feature: Basic and Pluggable Flask Routers

  • Feature: Flask-Restful Router

  • Feature: Ability to include other routes

  • Feature: Ability to register blueprints

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-Via-2014.05.19.1.tar.gz (14.4 kB view details)

Uploaded Source

File details

Details for the file Flask-Via-2014.05.19.1.tar.gz.

File metadata

File hashes

Hashes for Flask-Via-2014.05.19.1.tar.gz
Algorithm Hash digest
SHA256 f078454da9e6afa8dedc2dbc279fc09789ebf7f8223826ce92fb0fd88b880ecb
MD5 5791ee8b624debe8296ec5a1494ba2b5
BLAKE2b-256 c3db2f02b879635d056a496fe405abf357169757d4007bc3a165aa8d384228d1

See more details on using hashes here.

Supported by

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