This project provides a middleware for Falcon Web Framework that will render the response in an HTML form for documentation purpose. It uses the docstring from the Resource object and all the supported HTTP methods for the resource.
It is inspired by Django Rest Framework's Browsable API and is written using jinja2 templating language.
This project is currently in early stages of development. Once it is stable enough to be used by other projects, it will be provided via PyPI.
pip install falcon-api-browse
Since this is a middleware for Falcon, you can use it by passing an initialized instance during Falcon App creation.
from falcon import App from falcon_api_browse import HTMLResponseMiddleware app = App(middleware=HTMLResponseMiddleware())
There are some runnable examples in examples/ directory.
This project and contents of this repo are licensed under Apache 2.0 License.