A few helpful tools to make working with the falcon framework a real joy!


License
BSD-3-Clause
Install
pip install falcon-helpers==0.20.0

Documentation

Falcon Helpers

A number of helpful utilities to make working with Falcon Framework a breeze.

Quickstart

$ pip install falcon-helpers
import falcon
import falcon_helpers

api = falcon.App(
  middlewares=[
    falcon_helpers.middlewares.StaticsMiddleware()
  ]
)

Development

  1. Create a Python 3.10 virtual environment, and activate it.
  2. pip install -e .[dev]
  3. pytest or run tox and verify the tests pass.