Ecosyste.ms: Awesome
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: about 1 month 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 (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-12-05T12:34:11.000Z (about 6 years ago)
- Last Synced: 2024-11-14T13:57:08.048Z (about 2 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: 2
- 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, SpecBlueprintapp = Flask(__name__)
spec = FlaskSpec(app)