openapi-core/README.rst

89 lines
2.5 KiB
ReStructuredText
Raw Normal View History

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)
Now you can use it to validate requests
2017-09-22 09:15:27 +00:00
.. code-block:: python
2017-11-02 16:20:08 +00:00
from openapi_core.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
result.validate()
# get list of errors
errors = result.errors
and unmarshal request data from validation result
.. code-block:: python
# get parameters dictionary with path, query, cookies and headers parameters
validated_params = result.parameters
2017-11-02 16:20:08 +00:00
# get body
validated_body = result.body
2017-09-22 09:15:27 +00:00
2017-11-03 14:22:23 +00:00
Request object should implement BaseOpenAPIRequest interface. You can use FlaskOpenAPIRequest a Flask/Werkzeug request wrapper implementation:
.. code-block:: python
from openapi_core.validators import RequestValidator
from openapi_core.wrappers import FlaskOpenAPIRequest
openapi_request = FlaskOpenAPIRequest(flask_request)
validator = RequestValidator(spec)
result = validator.validate(openapi_request)
2017-09-21 11:51:37 +00:00
Related projects
================
* `openapi-spec-validator <https://github.com/p1c2u/openapi-spec-validator>`__