APIView
APIView
⚓︎
Source code in flask_openapi3/view.py
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 |
|
__init__(url_prefix=None, view_tags=None, view_security=None, view_responses=None, doc_ui=True, operation_id_callback=get_operation_id_for_path)
⚓︎
Create a class-based view
Parameters:
Name | Type | Description | Default |
---|---|---|---|
url_prefix
|
Optional[str]
|
A path to prepend to all the APIView's urls |
None
|
view_tags
|
Optional[List[Tag]]
|
APIView tags for every API. |
None
|
view_security
|
Optional[List[Dict[str, List[str]]]]
|
APIView security for every API. |
None
|
view_responses
|
Optional[ResponseDict]
|
API responses should be either a subclass of BaseModel, a dictionary, or None. |
None
|
doc_ui
|
bool
|
Enable OpenAPI document UI (Swagger UI and Redoc). Defaults to True. |
True
|
operation_id_callback
|
Callable
|
Callback function for custom operation_id generation.
Receives name (str), path (str) and method (str) parameters.
Defaults to |
get_operation_id_for_path
|
Source code in flask_openapi3/view.py
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 |
|
doc(*, tags=None, summary=None, description=None, external_docs=None, operation_id=None, responses=None, deprecated=None, security=None, servers=None, openapi_extensions=None, doc_ui=True)
⚓︎
Decorator for view method. More information goto https://spec.openapis.org/oas/v3.1.0#operation-object
Parameters:
Name | Type | Description | Default |
---|---|---|---|
tags
|
Optional[List[Tag]]
|
Adds metadata to a single tag. |
None
|
summary
|
Optional[str]
|
A short summary of what the operation does. |
None
|
description
|
Optional[str]
|
A verbose explanation of the operation behavior. |
None
|
external_docs
|
Optional[ExternalDocumentation]
|
Additional external documentation for this operation. |
None
|
operation_id
|
Optional[str]
|
Unique string used to identify the operation. |
None
|
responses
|
Optional[ResponseDict]
|
API responses should be either a subclass of BaseModel, a dictionary, or None. |
None
|
deprecated
|
Optional[bool]
|
Declares this operation to be deprecated. |
None
|
security
|
Optional[List[Dict[str, List[Any]]]]
|
A declaration of which security mechanisms can be used for this operation. |
None
|
servers
|
Optional[List[Server]]
|
An alternative server array to service this operation. |
None
|
openapi_extensions
|
Optional[Dict[str, Any]]
|
Allows extensions to the OpenAPI Schema. |
None
|
doc_ui
|
bool
|
Declares this operation to be shown. Default to True. |
True
|
Source code in flask_openapi3/view.py
102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 |
|
register(app, view_kwargs=None)
⚓︎
Register the API views with the given OpenAPI app.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
app
|
OpenAPI
|
An instance of the OpenAPI app. |
required |
view_kwargs
|
Optional[Dict[Any, Any]]
|
Additional keyword arguments to pass to the API views. |
None
|
Source code in flask_openapi3/view.py
193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 |
|
route(rule)
⚓︎
Decorator for view class
Source code in flask_openapi3/view.py
64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 |
|