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
|
## Specification
If you need the complete Specification, go to http://127.0.0.1:5000/openapi/openapi.json
## command: flask openapi
The `flask openapi` command will export the OpenAPI Specification to console when you execute the command.
```
flask --app IMPORT openapi
```
where `IMPORT` is the Flask application, in our case an OpenAPI application, to loan.
For example, if your OpenAPI application is `app` defined in `hello.py`,
as in the example in [Quickstart](../Quickstart.md#rest-api), the command is
`flask --app hello:app openapi `.
(For more information about the command line interface of Flask, please check out
the [Flask CLI documentation](https://flask.palletsprojects.com/en/latest/cli/#application-discovery).)
Execute `flask --app IMPORT openapi --help` for more information about the command:
Again, assuming your OpenAPI application is `app` defined in `hello.py`,
```
flask --app hello:app openapi --help
Usage: flask openapi [OPTIONS]
Export the OpenAPI Specification to console or a file
Options:
-o, --output PATH The output file path.
-f, --format [json|yaml]
The output file format.
-i, --indent INTEGER The indentation for JSON dumps.
--help Show this message and exit.
```
Please note, by default, the command will export the OpenAPI specification in JSON.
If you want the OpenAPI specification in YAML, by running the command with the `-f yaml` option,
you need to install the `pyyaml` package.
```bash
pip install flask-openapi3[yaml]
# or
pip install pyyaml
```
## info
**`flask-openapi3`** provide [Swagger UI](https://github.com/swagger-api/swagger-ui), [Redoc](https://github.com/Redocly/redoc) and [RapiDoc](https://github.com/rapi-doc/RapiDoc) interactive documentation.
Before that, you should know something about the [OpenAPI Specification](https://spec.openapis.org/oas/v3.1.0).
You must import **`Info`** from **`flask-openapi3`**, it needs some parameters: **`title`**, **`version`**... , more information sees the [OpenAPI Specification Info Object](https://spec.openapis.org/oas/v3.1.0#info-object).
```python hl_lines="4 5"
from flask_openapi3 import Info
from flask_openapi3 import OpenAPI, APIBlueprint
info = Info(title='book API', version='1.0.0')
app = OpenAPI(__name__, info=info)
api = APIBlueprint('/book', __name__, url_prefix='/api')
if __name__ == '__main__':
app.run()
```
run it, and go to http://127.0.0.1:5000/openapi, you will see the documentation.


## security_schemes
There are some examples for Security Scheme Object,
more features see the [OpenAPI Specification Security Scheme Object](https://spec.openapis.org/oas/v3.1.0#security-scheme-object).
```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}
```
First, you need to define the **security_schemes** and **security** variable:
```python
jwt = {
"type": "http",
"scheme": "bearer",
"bearerFormat": "JWT"
}
security_schemes = {"jwt": jwt}
security = [{"jwt": []}]
app = OpenAPI(__name__, info=info, security_schemes=security_schemes)
```
Second, add pass the [**security**](./Route_Operation.md#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):
...
```
result:

## responses
You can add `responses` for each API under the `app` wrapper.
```python hl_lines="4"
app = OpenAPI(
__name__,
info=info,
responses={404: NotFoundResponse}
)
@app.get(...)
def endpoint():
...
```
## abp_responses & view_responses
You can add `responses` for each API under the `api` or `api_view` wrapper.
```python hl_lines="10"
class Unauthorized(BaseModel):
code: int = Field(-1, description="Status Code")
message: str = Field("Unauthorized!", description="Exception Information")
api = APIBlueprint(
"/book",
__name__,
url_prefix="/api",
abp_responses={401: Unauthorized}
)
api_view = APIView(
"/book",
view_responses={401: Unauthorized}
)
@api.get(...)
def endpoint():
...
```
## doc_ui
You can pass `doc_ui=False` to disable the `OpenAPI spec` when init [`OpenAPI`](../Reference/OpenAPI.md).
```python
app = OpenAPI(__name__, info=info, doc_ui=False)
```
You can also use `doc_ui` in endpoint or when initializing [`APIBlueprint`](../Reference/APIBlueprint.md) or [`APIView`](../Reference/APIView.md).
```python hl_lines="4 9"
api = APIBlueprint(
'/book',
__name__,
doc_ui=False
)
# or
@api.get('/book', doc_ui=False)
def get_book():
...
```
## 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
servers = [
Server(url='http://127.0.0.1:5000'),
Server(url='https://127.0.0.1:5000'),
]
app = OpenAPI(__name__, info=info, servers=servers)
```
## 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
from flask_openapi3 import OpenAPI, ExternalDocumentation
external_docs=ExternalDocumentation(
url="https://www.openapis.org/",
description="Something great got better, get excited!"
)
app = OpenAPI(__name__, info=info, external_docs=external_docs)
```
## 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).
It can also be available in **APIBlueprint** and **APIView**, goto [Operation](Route_Operation.md#openapi_extensions).
```python hl_lines="3"
from flask_openapi3 import OpenAPI
app = OpenAPI(__name__, openapi_extensions={
"x-google-endpoints": [
{
"name": "my-cool-api.endpoints.my-project-id.cloud.goog",
"allowCors": True
}
]
})
@app.get("/")
def hello():
return "ok"
if __name__ == "__main__":
app.run(debug=True)
```
## validation error
You can override validation error response use `validation_error_status`, `validation_error_model`
and `validation_error_callback`.
- validation_error_status: HTTP Status of the response given when a validation error is detected by pydantic.
Defaults to 422.
- validation_error_model: Validation error response model for OpenAPI Specification.
- validation_error_callback: Validation error response callback, the return format corresponds to
the validation_error_model. Receive `ValidationError` and return `Flask Response`.
```python
from flask.wrappers import Response as FlaskResponse
from pydantic import BaseModel, ValidationError
class ValidationErrorModel(BaseModel):
code: str
message: str
def validation_error_callback(e: ValidationError) -> FlaskResponse:
validation_error_object = ValidationErrorModel(code="400", message=e.json())
response = make_response(validation_error_object.json())
response.headers["Content-Type"] = "application/json"
response.status_code = getattr(current_app, "validation_error_status", 422)
return response
app = OpenAPI(
__name__,
validation_error_status=400,
validation_error_model=ValidationErrorModel,
validation_error_callback=validation_error_callback
)
```
|