2019-10-19 23:39:13 +00:00
***** ***** **
2017-09-21 11:51:37 +00:00
openapi-core
***** ***** **
2017-09-21 12:36:15 +00:00
.. image :: https://img.shields.io/pypi/v/openapi-core.svg
:target: https://pypi.python.org/pypi/openapi-core
.. image :: https://travis-ci.org/p1c2u/openapi-core.svg?branch=master
:target: https://travis-ci.org/p1c2u/openapi-core
.. image :: https://img.shields.io/codecov/c/github/p1c2u/openapi-core/master.svg?style=flat
:target: https://codecov.io/github/p1c2u/openapi-core?branch=master
.. image :: https://img.shields.io/pypi/pyversions/openapi-core.svg
:target: https://pypi.python.org/pypi/openapi-core
.. image :: https://img.shields.io/pypi/format/openapi-core.svg
:target: https://pypi.python.org/pypi/openapi-core
.. image :: https://img.shields.io/pypi/status/openapi-core.svg
:target: https://pypi.python.org/pypi/openapi-core
About
2019-10-19 23:39:13 +00:00
#####
2017-09-21 12:36:15 +00:00
2017-09-21 11:51:37 +00:00
Openapi-core is a Python library that adds client-side and server-side support
2021-02-02 19:51:01 +00:00
for the `OpenAPI Specification v3 <https://github.com/OAI/OpenAPI-Specification> `__ .
Key features
***** ***** **
* **Validation** of requests and responses
* Schema **casting** and **unmarshalling**
* Media type and parameters **deserialization**
* **Security** providers (API keys, Cookie, Basic and Bearer HTTP authentications)
* Custom **deserializers** and **formats**
* **Integration** with libraries and frameworks
Documentation
#############
Check documentation to see more details about the features. All documentation is in the "docs" directory and online at `openapi-core.readthedocs.io <https://openapi-core.readthedocs.io> `__
2017-09-21 11:51:37 +00:00
Installation
2019-10-19 23:39:13 +00:00
############
2017-09-21 11:51:37 +00:00
Recommended way (via pip):
::
$ pip install openapi-core
Alternatively you can download the code and install from the repository:
.. code-block :: bash
$ pip install -e git+https://github.com/p1c2u/openapi-core.git#egg=openapi_core
2017-09-22 09:15:27 +00:00
Usage
2019-10-19 23:39:13 +00:00
#####
2017-09-22 09:15:27 +00:00
Firstly create your specification:
.. code-block :: python
from openapi_core import create_spec
spec = create_spec(spec_dict)
2019-10-19 23:39:13 +00:00
Request
***** **
2017-11-03 14:49:57 +00:00
Now you can use it to validate requests
2017-09-22 09:15:27 +00:00
.. code-block :: python
2020-02-18 11:57:15 +00:00
from openapi_core.validation.request.validators import RequestValidator
2017-09-22 09:15:27 +00:00
2017-11-02 16:20:08 +00:00
validator = RequestValidator(spec)
result = validator.validate(request)
# raise errors if request invalid
2017-11-03 14:55:21 +00:00
result.raise_for_errors()
2017-11-02 16:20:08 +00:00
2017-11-03 14:49:57 +00:00
# get list of errors
errors = result.errors
and unmarshal request data from validation result
.. code-block :: python
2019-10-19 12:59:16 +00:00
# get parameters object with path, query, cookies and headers parameters
2017-11-03 14:49:57 +00:00
validated_params = result.parameters
2019-10-19 12:59:16 +00:00
# or specific parameters
validated_path_params = result.parameters.path
2017-11-02 16:20:08 +00:00
# get body
2017-11-03 14:49:57 +00:00
validated_body = result.body
2017-09-22 09:15:27 +00:00
2020-02-04 20:35:23 +00:00
# get security data
validated_security = result.security
2021-02-02 19:51:01 +00:00
Request object should be instance of OpenAPIRequest class (See `Integrations <https://openapi-core.readthedocs.io/en/latest/integrations.html> `__ ).
2019-10-19 23:39:13 +00:00
Response
***** ***
You can also validate responses
.. code-block :: python
2020-02-18 11:57:15 +00:00
from openapi_core.validation.response.validators import ResponseValidator
2019-10-19 23:39:13 +00:00
validator = ResponseValidator(spec)
result = validator.validate(request, response)
# raise errors if response invalid
result.raise_for_errors()
# get list of errors
errors = result.errors
and unmarshal response data from validation result
.. code-block :: python
# get headers
validated_headers = result.headers
# get data
validated_data = result.data
2021-02-02 19:51:01 +00:00
Response object should be instance of OpenAPIResponse class (See `Integrations <https://openapi-core.readthedocs.io/en/latest/integrations.html> `__ ).
2020-03-02 16:05:36 +00:00
2017-09-21 11:51:37 +00:00
Related projects
2019-10-19 23:39:13 +00:00
################
2017-09-21 11:51:37 +00:00
* `openapi-spec-validator <https://github.com/p1c2u/openapi-spec-validator> `__
2020-03-05 11:28:21 +00:00
* `openapi-schema-validator <https://github.com/p1c2u/openapi-schema-validator> `__
2018-07-10 16:22:01 +00:00
* `pyramid_openapi3 <https://github.com/niteoweb/pyramid_openapi3> `__