A pluggable API specification generator. Currently supports the OpenAPI specification (f.k.a. Swagger 2.0).
Project description
A pluggable API specification generator. Currently supports the OpenAPI specification (f.k.a. Swagger 2.0).
Features
Supports OpenAPI 2.0 specification (f.k.a. Swagger)
Framework-agnostic
Includes plugins for marshmallow, Flask, and Tornado
Utilities for parsing docstrings
Example Application
from apispec import APISpec
from flask import Flask, jsonify
from marshmallow import Schema, fields
# Create an APISpec
spec = APISpec(
title='Swagger Petstore',
version='1.0.0',
plugins=[
'apispec.ext.flask',
'apispec.ext.marshmallow',
],
)
# Optional marshmallow support
class CategorySchema(Schema):
id = fields.Int()
name = fields.Str(required=True)
class PetSchema(Schema):
category = fields.Nested(CategorySchema, many=True)
name = fields.Str()
# Optional Flask support
app = Flask(__name__)
@app.route('/random')
def random_pet():
"""A cute furry animal endpoint.
---
get:
description: Get a random pet
responses:
200:
description: A pet to be returned
schema: PetSchema
"""
pet = get_random_pet()
return jsonify(PetSchema().dump(pet).data)
ctx = app.test_request_context()
ctx.push()
# Register entities and paths
spec.definition('Category', schema=CategorySchema)
spec.definition('Pet', schema=PetSchema)
spec.add_path(view=random_pet)
Generated OpenAPI Spec
spec.to_dict()
# {
# "info": {
# "title": "Swagger Petstore",
# "version": "1.0.0"
# },
# "swagger": "2.0",
# "paths": {
# "/random": {
# "get": {
# "description": "A cute furry animal endpoint.",
# "responses": {
# "200": {
# "schema": {
# "$ref": "#/definitions/Pet"
# },
# "description": "A pet to be returned"
# }
# },
# }
# }
# },
# "definitions": {
# "Pet": {
# "properties": {
# "category": {
# "type": "array",
# "items": {
# "$ref": "#/definitions/Category"
# }
# },
# "name": {
# "type": "string"
# }
# }
# },
# "Category": {
# "required": [
# "name"
# ],
# "properties": {
# "name": {
# "type": "string"
# },
# "id": {
# "type": "integer",
# "format": "int32"
# }
# }
# }
# },
# }
Documentation
Documentation is available at http://apispec.readthedocs.io/ .
License
MIT licensed. See the bundled LICENSE file for more details.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
apispec-0.12.0.tar.gz
(35.9 kB
view details)
Built Distribution
File details
Details for the file apispec-0.12.0.tar.gz
.
File metadata
- Download URL: apispec-0.12.0.tar.gz
- Upload date:
- Size: 35.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 19ec90429da85557cd1f9d5e5692c92e3694376a3475dfe415936b364b1b663b |
|
MD5 | 4837a37b0fd24d082095917c88170083 |
|
BLAKE2b-256 | 2399f55e57582d38f6a1d701fee37151586c5253e087803cca84999f8cf79430 |
Provenance
File details
Details for the file apispec-0.12.0-py2.py3-none-any.whl
.
File metadata
- Download URL: apispec-0.12.0-py2.py3-none-any.whl
- Upload date:
- Size: 20.9 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 17005a8a121dfc7902a08124d75d850d16a8e75fdfe161b455eb35247ed7b4c7 |
|
MD5 | eb5e5249eea2604ca13c33a5e97db127 |
|
BLAKE2b-256 | b9f12eb8bd4c18323ae79aa3a24c4b7b1a85472bbb0ff23bd6e7d389012d193a |