openapi-core/openapi_core/__init__.py

16 lines
424 B
Python
Raw Normal View History

# -*- coding: utf-8 -*-
2017-09-21 11:51:37 +00:00
"""OpenAPI core module"""
2017-11-03 11:40:05 +00:00
from openapi_core.shortcuts import (
2018-04-24 11:51:38 +00:00
create_spec, validate_parameters, validate_body, validate_data,
2017-11-03 11:40:05 +00:00
)
2017-09-21 11:51:37 +00:00
__author__ = 'Artur Maciag'
2017-09-21 11:51:37 +00:00
__email__ = 'maciag.artur@gmail.com'
2021-05-07 10:09:56 +00:00
__version__ = '0.14.0'
2017-09-21 11:51:37 +00:00
__url__ = 'https://github.com/p1c2u/openapi-core'
__license__ = 'BSD 3-Clause License'
2018-04-24 11:51:38 +00:00
__all__ = [
'create_spec', 'validate_parameters', 'validate_body', 'validate_data',
]