Skip to content

dapper91/python-openapi-ui-bundles

Repository files navigation

Python OpenAPI UI bundles

This package provides the static files for OpenAPI UI tools as a python package. The following UI tools are included:

Flask usage example:

import flask
import openapi_ui_bundles

app = flask.Flask(__name__, static_folder=openapi_ui_bundles.swagger_ui.static_path, static_url_path='/')

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

Swagger UI

Swagger UI example

RapiDoc

RapiDoc UI example

ReDoc

ReDoc UI example