Skip to main content

Generate OpenApi json specification

Project description

openapi-specgen

Openapi-Specgen helps you generate OpenApi specification from your python code.

Includes support for automatically generating OpenApi schemas for Dataclasses and Marshamllow Schemas.

Installation

Install using pip

pip install openapi-specgen

Quick Start

Define your objects using dataclasses or marshmallow schemas. Import the required OpenApi classes and define your Api with it`s paths, params and responses.

from typing import List
from dataclasses import dataclass

@dataclass
class DataclassObject():
    str_field: str
    int_field: int
    float_field: float
    boolean_field: bool
    list_field: List[str]

from openapi_specgen import OpenApi, OpenApiParam, OpenApiPath, OpenApiResponse

sample_response = OpenApiResponse('Response description', data_type=DataclassObject)
sample_param = OpenApiParam('param_name', 'query', data_type=str)
sample_path = OpenApiPath('/api_path', 'get', [sample_response], [sample_param])


marshmallow_response = OpenApiResponse('Response description', data_type=MarshmallowSchema)
marshmallow_path = OpenApiPath('/api_path', 'post', [sample_response], requestBody=MarshmallowSchema)

sample_api = OpenApi('Sample Api', [sample_path, marshmallow_path])

sample_api.as_dict()

License

This project is licensed under the MIT License - see the LICENSE file for details

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

openapi-specgen-0.0.3.dev0.tar.gz (5.0 kB view details)

Uploaded Source

Built Distribution

openapi_specgen-0.0.3.dev0-py3-none-any.whl (8.3 kB view details)

Uploaded Python 3

File details

Details for the file openapi-specgen-0.0.3.dev0.tar.gz.

File metadata

  • Download URL: openapi-specgen-0.0.3.dev0.tar.gz
  • Upload date:
  • Size: 5.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.19.1 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.1

File hashes

Hashes for openapi-specgen-0.0.3.dev0.tar.gz
Algorithm Hash digest
SHA256 cc74fd703169bcfb187016d8b7684878e15d09ae774946d9ed25603ac8aee202
MD5 5c691dde0138ec3e387328ed9fbccdf4
BLAKE2b-256 a822213b72d56170330d941cb768f7abbe4849dd92ed2cd938b29ab29ff8b664

See more details on using hashes here.

File details

Details for the file openapi_specgen-0.0.3.dev0-py3-none-any.whl.

File metadata

  • Download URL: openapi_specgen-0.0.3.dev0-py3-none-any.whl
  • Upload date:
  • Size: 8.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.19.1 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.1

File hashes

Hashes for openapi_specgen-0.0.3.dev0-py3-none-any.whl
Algorithm Hash digest
SHA256 05c287ddc4c8b211056e3147d23b6af6115bf32828de2f1ac153af16f01d1513
MD5 22a80e55bbca9ec1ad51545415a197bc
BLAKE2b-256 5091f89a5a484a70c622399be38dfad7cbe9ef410f93dfc356986b7ca49f2e54

See more details on using hashes here.

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