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
|
|
|
|
=====
|
|
|
|
|
2017-09-21 11:51:37 +00:00
|
|
|
Openapi-core is a Python library that adds client-side and server-side support
|
2017-09-21 11:54:09 +00:00
|
|
|
for the `OpenAPI Specification v3.0.0 <https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.0.0.md>`__.
|
2017-09-21 11:51:37 +00:00
|
|
|
|
|
|
|
Installation
|
|
|
|
============
|
|
|
|
|
|
|
|
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
|
|
|
|
=====
|
|
|
|
|
|
|
|
Firstly create your specification:
|
|
|
|
|
|
|
|
.. code-block:: python
|
|
|
|
|
|
|
|
from openapi_core import create_spec
|
|
|
|
|
|
|
|
spec = create_spec(spec_dict)
|
|
|
|
|
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
|
|
|
|
|
2018-06-28 14:01:35 +00:00
|
|
|
from openapi_core.shortcuts 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
|
|
|
|
2017-11-03 14:59:01 +00:00
|
|
|
or use shortcuts for simple validation
|
|
|
|
|
|
|
|
.. code-block:: python
|
|
|
|
|
|
|
|
from openapi_core import validate_parameters, validate_body
|
|
|
|
|
|
|
|
validated_params = validate_parameters(spec, request)
|
|
|
|
validated_body = validate_body(spec, request)
|
|
|
|
|
2019-10-19 12:35:48 +00:00
|
|
|
Request object should be instance of OpenAPIRequest class. You can use FlaskOpenAPIRequest a Flask/Werkzeug request factory:
|
2017-11-03 14:22:23 +00:00
|
|
|
|
|
|
|
.. code-block:: python
|
|
|
|
|
2018-09-04 11:57:27 +00:00
|
|
|
from openapi_core.shortcuts import RequestValidator
|
2019-10-19 11:01:50 +00:00
|
|
|
from openapi_core.contrib.flask import FlaskOpenAPIRequest
|
2017-11-03 14:22:23 +00:00
|
|
|
|
|
|
|
openapi_request = FlaskOpenAPIRequest(flask_request)
|
|
|
|
validator = RequestValidator(spec)
|
|
|
|
result = validator.validate(openapi_request)
|
|
|
|
|
2019-10-19 12:35:48 +00:00
|
|
|
or simply specify request factory for shortcuts
|
2017-11-03 15:04:18 +00:00
|
|
|
|
|
|
|
.. code-block:: python
|
|
|
|
|
|
|
|
from openapi_core import validate_parameters, validate_body
|
|
|
|
|
|
|
|
validated_params = validate_parameters(
|
2019-10-19 12:35:48 +00:00
|
|
|
spec, request, request_factory=FlaskOpenAPIRequest)
|
2017-11-03 15:04:18 +00:00
|
|
|
validated_body = validate_body(
|
2019-10-19 12:35:48 +00:00
|
|
|
spec, request, request_factory=FlaskOpenAPIRequest)
|
2017-11-03 15:04:18 +00:00
|
|
|
|
2017-11-06 14:13:40 +00:00
|
|
|
You can also validate responses
|
|
|
|
|
|
|
|
.. code-block:: python
|
|
|
|
|
2018-11-01 17:13:26 +00:00
|
|
|
from openapi_core.shortcuts import ResponseValidator
|
2017-11-06 14:13:40 +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
|
|
|
|
|
2017-11-06 14:32:46 +00:00
|
|
|
or use shortcuts for simple validation
|
|
|
|
|
|
|
|
.. code-block:: python
|
|
|
|
|
|
|
|
from openapi_core import validate_data
|
|
|
|
|
|
|
|
validated_data = validate_data(spec, request, response)
|
|
|
|
|
2019-10-19 12:35:48 +00:00
|
|
|
Response object should be instance of OpenAPIResponse class. You can use FlaskOpenAPIResponse a Flask/Werkzeug response factory:
|
2017-11-06 14:32:46 +00:00
|
|
|
|
|
|
|
.. code-block:: python
|
|
|
|
|
2018-06-28 14:01:35 +00:00
|
|
|
from openapi_core.shortcuts import ResponseValidator
|
2019-10-19 11:01:50 +00:00
|
|
|
from openapi_core.contrib.flask import FlaskOpenAPIResponse
|
2017-11-06 14:32:46 +00:00
|
|
|
|
|
|
|
openapi_response = FlaskOpenAPIResponse(flask_response)
|
|
|
|
validator = ResponseValidator(spec)
|
|
|
|
result = validator.validate(openapi_request, openapi_response)
|
|
|
|
|
2019-10-19 12:35:48 +00:00
|
|
|
or simply specify response factory for shortcuts
|
2017-11-06 14:32:46 +00:00
|
|
|
|
|
|
|
.. code-block:: python
|
|
|
|
|
|
|
|
from openapi_core import validate_parameters, validate_body
|
|
|
|
|
|
|
|
validated_data = validate_data(
|
2019-10-19 12:59:16 +00:00
|
|
|
spec, request, response,
|
|
|
|
request_factory=FlaskOpenAPIRequest,
|
|
|
|
response_factory=FlaskOpenAPIResponse)
|
2017-11-06 14:32:46 +00:00
|
|
|
|
2017-09-21 11:51:37 +00:00
|
|
|
Related projects
|
|
|
|
================
|
|
|
|
* `openapi-spec-validator <https://github.com/p1c2u/openapi-spec-validator>`__
|
2018-07-10 16:22:01 +00:00
|
|
|
* `pyramid_openapi3 <https://github.com/niteoweb/pyramid_openapi3>`__
|