An open API service indexing awesome lists of open source software.

https://github.com/artemangelchev/flask-spec

A lightweight wrapper around apispec library
https://github.com/artemangelchev/flask-spec

apispec flask marshmallow openapi openapi-spec openapi-specification python python3 rest-api rest-api-documentation

Last synced: 3 months ago
JSON representation

A lightweight wrapper around apispec library

Awesome Lists containing this project

README

        

=============
flask-spec
=============

Install
-------

::

pip install flask-spec

Quickstart
----------

::

from flask import Flask, Blueprint
from flask_spec import FlaskSpec, SpecBlueprint

app = Flask(__name__)
spec = FlaskSpec(app)