Skip to main content

client-side and server-side support for the OpenAPI Specification v3

Project description

https://img.shields.io/pypi/v/openapi-core.svg https://travis-ci.org/python-openapi/openapi-core.svg?branch=master https://img.shields.io/codecov/c/github/python-openapi/openapi-core/master.svg?style=flat https://img.shields.io/pypi/pyversions/openapi-core.svg https://img.shields.io/pypi/format/openapi-core.svg https://img.shields.io/pypi/status/openapi-core.svg

About

Openapi-core is a Python library that adds client-side and server-side support for the OpenAPI v3.0 and OpenAPI v3.1 specification.

Key features

  • Validation and unmarshalling of request and response data (including webhooks)

  • Integration with popular libraries (Requests, Werkzeug) and frameworks (Django, Falcon, Flask, Starlette)

  • Customization with media type deserializers and format unmarshallers

  • Security data providers (API keys, Cookie, Basic and Bearer HTTP authentications)

Documentation

Check documentation to see more details about the features. All documentation is in the “docs” directory and online at openapi-core.readthedocs.io

Installation

Recommended way (via pip):

pip install openapi-core

Alternatively you can download the code and install from the repository:

pip install -e git+https://github.com/python-openapi/openapi-core.git#egg=openapi_core

First steps

Firstly create your OpenAPI object.

from openapi_core import OpenAPI

openapi = OpenAPI.from_file_path('openapi.json')

Now you can use it to validate and unmarshal against requests and/or responses.

# raises error if request is invalid
result = openapi.unmarshal_request(request)

Retrieve validated and unmarshalled request data

# get parameters
path_params = result.parameters.path
query_params = result.parameters.query
cookies_params = result.parameters.cookies
headers_params = result.parameters.headers
# get body
body = result.body
# get security data
security = result.security

Request object should implement OpenAPI Request protocol. Check Integrations to find officially supported implementations.

For more details read about Unmarshalling process.

If you just want to validate your request/response data without unmarshalling, read about Validation instead.

License

The project is under the terms of BSD 3-Clause License.

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

openapi_core-0.19.4.tar.gz (109.1 kB view details)

Uploaded Source

Built Distribution

openapi_core-0.19.4-py3-none-any.whl (103.7 kB view details)

Uploaded Python 3

File details

Details for the file openapi_core-0.19.4.tar.gz.

File metadata

  • Download URL: openapi_core-0.19.4.tar.gz
  • Upload date:
  • Size: 109.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.5

File hashes

Hashes for openapi_core-0.19.4.tar.gz
Algorithm Hash digest
SHA256 1150d9daa5e7b4cacfd7d7e097333dc89382d7d72703934128dcf8a1a4d0df49
MD5 d4bcde399b8d328485af867fe344cc6e
BLAKE2b-256 34b9a769ae516c7f016465b2d9abc6e8dc4d5a1b54c57ab99b3cc95e9587955f

See more details on using hashes here.

File details

Details for the file openapi_core-0.19.4-py3-none-any.whl.

File metadata

File hashes

Hashes for openapi_core-0.19.4-py3-none-any.whl
Algorithm Hash digest
SHA256 38e8347b6ebeafe8d3beb588214ecf0171874bb65411e9d4efd23cb011687201
MD5 89bbb59945b948aba5fe66013fd4e06b
BLAKE2b-256 d2b34534adc8bac68a5d743caa786f1443545faed4d7cc7a5650b2d49255adfc

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