1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 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 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312
|
## tags
You can also specify tag for apis like this:
```python hl_lines="3 6"
from flask_openapi3 import Tag
book_tag = Tag(name='book', description='Some Book')
@api.get('/book', tags=[book_tag])
def get_book():
...
```
and then you will get the magic.

## abp_tags & view_tags
You don't need to specify **tags** for every api.
```python hl_lines="3 4"
tag = Tag(name='book', description="Some Book")
api = APIBlueprint('/book', __name__, url_prefix='/api', abp_tags=[tag])
api_view = APIView('/book', __name__, url_prefix='/api', view_tags=[tag])
@api.post('/book')
def create_book(body: BookBody):
...
```
## summary and description
You need to add docs to the view-func. The first line is the **summary**, and the rest is the **description**. Like this:
```python hl_lines="3 4 5 6"
@app.get('/book/<int:bid>', tags=[book_tag], responses={200: BookResponse}, security=security)
def get_book(path: BookPath, query: BookBody):
"""Get book
Get some book by id, like:
http://localhost:5000/book/3
"""
return {"code": 0, "message": "ok", "data": {"bid": path.bid, "age": query.age, "author": query.author}}
```

Now keyword parameters `summary` and `description` is supported, it will be take first.
```python hl_lines="1"
@app.get('/book/<int:bid>', summary="new summary", description='new description')
def get_book(path: BookPath, query: BookBody):
"""Get book
Get some book by id, like:
http://localhost:5000/book/3
"""
return {"code": 0, "message": "ok", "data": {}}
```

## external_docs
Allows referencing an external resource for extended documentation.
More information to see [External Documentation Object](https://spec.openapis.org/oas/v3.1.0#external-documentation-object).
```python hl_lines="10"
from flask_openapi3 import OpenAPI, ExternalDocumentation
app = OpenAPI(__name__, info=info)
@app.get(
'/book/<int:bid>',
tags=[book_tag],
summary='new summary',
description='new description',
external_docs=ExternalDocumentation(
url="https://www.openapis.org/",
description="Something great got better, get excited!")
)
def get_book(path: BookPath):
...
```
## operation_id
You can set `operation_id` for an api (operation). The default is automatically.
```python hl_lines="6"
@app.get(
'/book/<int:bid>',
tags=[book_tag],
summary='new summary',
description='new description',
operation_id="get_book_id"
)
def get_book(path: BookPath):
...
```
## operation_id_callback
You can set a custom callback to automatically set `operation_id` for an api (operation).
Just add a `operation_id_callback` param to the constructor of `OpenAPI` or `APIBlueprint` or `APIView`.
The example shows setting the default `operation_id` to be the function name, in this case `create_book`.
```python hl_lines="6"
def get_operation_id_for_path(*, name: str, path: str, method: str) -> str:
return name
api = APIBlueprint('book', __name__, url_prefix='/api', operation_id_callback=get_operation_id_for_path)
@api.post('/book/')
def create_book(body: BookBody):
...
```
## deprecated
`deprecated`: mark as deprecated support. default to not True.
```python
@app.get('/book', deprecated=True)
def get_books(query: BookQuery):
...
```
## security
pass the **security** to your api, like this:
```python hl_lines="1"
@app.get('/book/<int:bid>', tags=[book_tag], security=security)
def get_book(path: Path, query: BookBody):
...
```
There are many kinds of security supported here:
```python
# Basic Authentication Sample
basic = {
"type": "http",
"scheme": "basic"
}
# JWT Bearer Sample
jwt = {
"type": "http",
"scheme": "bearer",
"bearerFormat": "JWT"
}
# API Key Sample
api_key = {
"type": "apiKey",
"name": "api_key",
"in": "header"
}
# Implicit OAuth2 Sample
oauth2 = {
"type": "oauth2",
"flows": {
"implicit": {
"authorizationUrl": "https://example.com/api/oauth/dialog",
"scopes": {
"write:pets": "modify pets in your account",
"read:pets": "read your pets"
}
}
}
}
security_schemes = {"jwt": jwt, "api_key": api_key, "oauth2": oauth2, "basic": basic}
app = OpenAPI(__name__, info=info, security_schemes=security_schemes)
security = [
{"jwt": []},
{"oauth2": ["write:pets", "read:pets"]},
{"basic": []}
]
@app.get(
'/book/<int:bid>',
tags=[book_tag],
summary='new summary',
description='new description',
security=security
)
def get_book(path: BookPath):
...
```
## abp_security & view_security
You don't need to specify **security** for every api.
```python hl_lines="3 4"
tag = Tag(name='book', description="Some Book")
security = [{"jwt": []}]
api = APIBlueprint('/book', __name__, abp_tags=[tag], abp_security=security)
api_view = APIView('/book', __name__, abp_tags=[tag], view_security=security)
@api.post('/book')
def create_book(body: BookBody):
...
```
## servers
An array of Server Objects, which provide connectivity information to a target server. If the server's property is not provided, or is an empty array, the default value would be a Server Object with an url value of /.
```python
from flask_openapi3 import OpenAPI, Server
app = OpenAPI(__name__, info=info)
@app.get(
'/book/<int:bid>',
tags=[book_tag],
summary='new summary',
description='new description',
servers=[Server(url="https://www.openapis.org/", description="openapi")]
)
def get_book(path: BookPath):
...
```
## openapi_extensions
While the OpenAPI Specification tries to accommodate most use cases,
additional data can be added to extend the specification at certain points.
See [Specification Extensions](https://spec.openapis.org/oas/v3.1.0#specification-extensions).
```python hl_lines="3 12 19 28 42"
from flask_openapi3 import OpenAPI, APIBlueprint, APIView
app = OpenAPI(__name__, openapi_extensions={
"x-google-endpoints": [
{
"name": "my-cool-api.endpoints.my-project-id.cloud.goog",
"allowCors": True
}
]
})
openapi_extensions = {
"x-google-backend": {
"address": "https://<NODE_SERVICE_ID>-<HASH>.a.run.app",
"protocol": "h2"
}
}
@app.get("/", openapi_extensions=openapi_extensions)
def hello():
return "ok"
# APIBlueprint
api = APIBlueprint("book", __name__, url_prefix="/api")
@api.get('/book', openapi_extensions=openapi_extensions)
def get_book():
return {"code": 0, "message": "ok"}
app.register_api(api)
# APIView
api_view = APIView()
@api_view.route("/view/book")
class BookListAPIView:
@api_view.doc(openapi_extensions=openapi_extensions)
def post(self):
return "ok"
app.register_api_view(api_view)
```
## doc_ui
You can pass `doc_ui=False` to disable the `OpenAPI spec` when init `OpenAPI `.
```python
app = OpenAPI(__name__, info=info, doc_ui=False)
```
You can also use `doc_ui` in endpoint or when initializing `APIBlueprint`.
```python hl_lines="4 9"
api = APIBlueprint(
'/book',
__name__,
doc_ui=False
)
# or
@api.get('/book', doc_ui=False)
def get_book():
...
```
|