File tree 4 files changed +23
-1
lines changed
4 files changed +23
-1
lines changed Original file line number Diff line number Diff line change
1
+ API Reference
2
+ =============
3
+
4
+ Documentation with information of functions, classes or methods and all other parts of the OpenAPI-core public API.
5
+
6
+ .. toctree ::
7
+ :maxdepth: 1
8
+
9
+ openapi
Original file line number Diff line number Diff line change
1
+ `OpenAPI ` class
2
+ ===============
3
+
4
+ .. autoclass :: openapi_core.OpenAPI
5
+ :members:
Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ openapi-core
11
11
customizations/index
12
12
security
13
13
extensions
14
+ api/index
14
15
contributing
15
16
16
17
Openapi-core is a Python library that adds client-side and server-side support
Original file line number Diff line number Diff line change 71
71
72
72
73
73
class OpenAPI :
74
- """OpenAPI class."""
74
+ """`OpenAPI` application class, the main entrypoint class for OpenAPI-core.
75
+
76
+ Import :class:`OpenAPI` class from the main :module:`openapi_core` module::
77
+
78
+ from openapi_core import OpenAPI
79
+
80
+ app = OpenAPI(spec)
81
+ """
75
82
76
83
def __init__ (
77
84
self ,
You can’t perform that action at this time.
0 commit comments