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])
sample_api = OpenApi('Sample Api', [sample_path, marshmallow_path])
sample_api.as_dict()
Adding custom type resolvers
The following code snippet expands on the quick start example to show you how to add custom resolvers for any other types.
# Create a func with the following signature:
def custom_resolver(openapi_schema_resolver, data_type):
# Resolver must return None if it cannot resolve the data_type
if data_type is not CustomType:
return
# For simple types the schema can be returned now, e.g
# return {"type": "string", "format": "byte"}
# Optionally for objects we can use a reference using the following syntax
# Register the actual component
component_name = "CustomType"
openapi_schema_resolver.add_component(
component_name,
{
"title": component_name,
"type": "object",
"required": ["foo"],
"properties": {
# use openapi_schema_resolver.get_schema
# to recursively resolve other schemas
"foo": openapi_schema_resolver.get_schema(int)
}
}
)
# Return the reference
return {'$ref': openapi_schema_resolver.get_component_ref(component_name)}
# Register your func on your OpenApi instance
test_api.add_resolver(custom_resolver)
License
This project is licensed under the MIT License - see the LICENSE file for 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
Built Distribution
File details
Details for the file openapi-specgen-1.0.0.tar.gz
.
File metadata
- Download URL: openapi-specgen-1.0.0.tar.gz
- Upload date:
- Size: 8.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c5e2ee5ad33b729cc185fae029b7d372d3db24a197ef664f17bea754da02f669 |
|
MD5 | 23c5a54fa4b58badcd0003889a79c04a |
|
BLAKE2b-256 | 94d8b814e708093602848c0e22193b39a1760dedae47f67624cc8ab78b8e711e |
File details
Details for the file openapi_specgen-1.0.0-py3-none-any.whl
.
File metadata
- Download URL: openapi_specgen-1.0.0-py3-none-any.whl
- Upload date:
- Size: 9.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 964cc56882fc3dfc0f3c7d417ae3e9e78409506bd0b8656d3e08050f378793c8 |
|
MD5 | b6eae7a9cb89f321f37baa70826e34e4 |
|
BLAKE2b-256 | 2c0af292e27fb8ebc77d264ca17e0d8ec2865973f3d0b4ff6b4bdac83711c37c |