Skip to main content

A pluggable API specification generator. Currently supports the OpenAPI specification (f.k.a. Swagger 2.0).

Project description

Latest version https://travis-ci.org/marshmallow-code/apispec.svg?branch=dev Documentation

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, Tornado, and bottle.

  • 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)

# Register entities and paths
spec.definition('Category', schema=CategorySchema)
spec.definition('Pet', schema=PetSchema)
with app.test_request_context():
    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/ .

Ecosystem

A list of apispec-related libraries can be found at the GitHub wiki here:

https://github.com/marshmallow-code/apispec/wiki/Ecosystem

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.27.1.tar.gz (43.0 kB view details)

Uploaded Source

Built Distribution

apispec-0.27.1-py2.py3-none-any.whl (22.5 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file apispec-0.27.1.tar.gz.

File metadata

  • Download URL: apispec-0.27.1.tar.gz
  • Upload date:
  • Size: 43.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for apispec-0.27.1.tar.gz
Algorithm Hash digest
SHA256 878e525c6f171afdb5ac99001c05a4fdc2d2ede373fe6c862f282940b2f9ab19
MD5 ae7a2bf40a412983bdc1d25df34be5cd
BLAKE2b-256 9242c61113495e75ac0a782ad19aed90f92779e2c504de9f29314210c40a0e26

See more details on using hashes here.

Provenance

File details

Details for the file apispec-0.27.1-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for apispec-0.27.1-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 7299dcc38775834692dc9e6324d83f2da0e77b2b55a67331ed151141ff309797
MD5 c37b3e07efed90b02ccac68d59794ef0
BLAKE2b-256 21d245346105e0e45a6a8406056a9064206fd7d735d2d12e6299c0420ed55918

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page