openapi-core/README.rst

256 lines
6.3 KiB
ReStructuredText
Raw Normal View History

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
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
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
*******
Now you can use it to validate requests
2017-09-22 09:15:27 +00:00
.. code-block:: python
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
# 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
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
validated_body = result.body
2017-09-22 09:15:27 +00:00
2019-10-19 23:39:13 +00:00
Request object should be instance of OpenAPIRequest class (See `Integrations`_).
Response
********
You can also validate responses
.. code-block:: python
from openapi_core.shortcuts import ResponseValidator
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
Response object should be instance of OpenAPIResponse class (See `Integrations`_).
2020-02-03 16:30:31 +00:00
Customizations
##############
Deserializers
*************
Pass custom defined media type deserializers dictionary with supported mimetypes as a key to `RequestValidator` or `ResponseValidator` constructor:
.. code-block:: python
def protobuf_deserializer(message):
feature = route_guide_pb2.Feature()
feature.ParseFromString(message)
return feature
custom_media_type_deserializers = {
'application/protobuf': protobuf_deserializer,
}
validator = ResponseValidator(
spec, custom_media_type_deserializers=custom_media_type_deserializers)
result = validator.validate(request, response)
2019-10-19 23:39:13 +00:00
Integrations
############
Django
******
2019-10-20 02:00:10 +00:00
For Django 2.2 you can use DjangoOpenAPIRequest a Django request factory:
2017-11-03 14:22:23 +00:00
.. code-block:: python
from openapi_core.shortcuts import RequestValidator
2019-10-19 23:39:13 +00:00
from openapi_core.contrib.django import DjangoOpenAPIRequest
2017-11-03 14:22:23 +00:00
2019-10-19 23:39:13 +00:00
openapi_request = DjangoOpenAPIRequest(django_request)
2017-11-03 14:22:23 +00:00
validator = RequestValidator(spec)
result = validator.validate(openapi_request)
2019-10-19 23:39:13 +00:00
You can use DjangoOpenAPIResponse as a Django response factory:
2017-11-06 14:13:40 +00:00
.. code-block:: python
2018-11-01 17:13:26 +00:00
from openapi_core.shortcuts import ResponseValidator
2019-10-19 23:39:13 +00:00
from openapi_core.contrib.django import DjangoOpenAPIResponse
2017-11-06 14:13:40 +00:00
2019-10-19 23:39:13 +00:00
openapi_response = DjangoOpenAPIResponse(django_response)
2017-11-06 14:13:40 +00:00
validator = ResponseValidator(spec)
2019-10-19 23:39:13 +00:00
result = validator.validate(openapi_request, openapi_response)
2017-11-06 14:13:40 +00:00
2019-10-19 23:39:13 +00:00
Flask
*****
2020-01-26 23:29:41 +00:00
Decorator
=========
Flask views can be integrated by `FlaskOpenAPIViewDecorator` decorator.
.. code-block:: python
from openapi_core.contrib.flask.decorators import FlaskOpenAPIViewDecorator
openapi = FlaskOpenAPIViewDecorator.from_spec(spec)
@app.route('/home')
@openapi
def home():
pass
If you want to decorate class based view you can use the decorators attribute:
.. code-block:: python
class MyView(View):
decorators = [openapi]
View
====
As an alternative to the decorator-based integration, Flask method based views can be integrated by inheritance from `FlaskOpenAPIView` class.
.. code-block:: python
from openapi_core.contrib.flask.views import FlaskOpenAPIView
class MyView(FlaskOpenAPIView):
pass
app.add_url_rule('/home', view_func=MyView.as_view('home', spec))
2020-01-27 11:10:54 +00:00
Request parameters
==================
In Flask, all unmarshalled request data are provided as Flask request object's openapi.parameters attribute
.. code-block:: python
from flask.globals import request
@app.route('/browse/<id>/')
@openapi
def home():
browse_id = request.openapi.parameters.path['id']
page = request.openapi.parameters.query.get('page', 1)
2020-01-26 23:29:41 +00:00
Low level
=========
2019-10-19 23:39:13 +00:00
You can use FlaskOpenAPIRequest a Flask/Werkzeug request factory:
2017-11-06 14:13:40 +00:00
.. code-block:: python
2019-10-19 23:39:13 +00:00
from openapi_core.shortcuts import RequestValidator
from openapi_core.contrib.flask import FlaskOpenAPIRequest
2017-11-06 14:13:40 +00:00
2019-10-19 23:39:13 +00:00
openapi_request = FlaskOpenAPIRequest(flask_request)
validator = RequestValidator(spec)
result = validator.validate(openapi_request)
2017-11-06 14:13:40 +00:00
2019-10-19 23:39:13 +00:00
You can use FlaskOpenAPIResponse as a Flask/Werkzeug response factory:
2017-11-06 14:32:46 +00:00
.. code-block:: python
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 23:39:13 +00:00
Pyramid
*******
See `pyramid_openapi3 <https://github.com/niteoweb/pyramid_openapi3>`_ project.
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>`__
2018-07-10 16:22:01 +00:00
* `pyramid_openapi3 <https://github.com/niteoweb/pyramid_openapi3>`__