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: 5 months ago
JSON representation
A lightweight wrapper around apispec library
- Host: GitHub
- URL: https://github.com/artemangelchev/flask-spec
- Owner: ArtemAngelchev
- License: mit
- Created: 2018-08-16T14:16:24.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-12-05T12:34:11.000Z (over 7 years ago)
- Last Synced: 2025-09-12T04:51:12.043Z (9 months ago)
- Topics: apispec, flask, marshmallow, openapi, openapi-spec, openapi-specification, python, python3, rest-api, rest-api-documentation
- Language: Python
- Homepage:
- Size: 11.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
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)