カスタムレスポンスクラス - ファイル、HTML、リダイレクト、ストリーミングなど¶
インスタンスを作成し、パスオペレーションから直接返すために使用できるカスタムレスポンスクラスがいくつかあります。
カスタムレスポンス - HTML、ストリーム、ファイルなどに関するFastAPIドキュメントで詳細をご覧ください。
fastapi.responses
から直接インポートできます
from fastapi.responses import (
FileResponse,
HTMLResponse,
JSONResponse,
ORJSONResponse,
PlainTextResponse,
RedirectResponse,
Response,
StreamingResponse,
UJSONResponse,
)
FastAPIレスポンス¶
JSONパフォーマンスを最適化するために使用できるカスタムFastAPIレスポンスクラスがいくつかあります。
fastapi.responses.UJSONResponse ¶
UJSONResponse(
content,
status_code=200,
headers=None,
media_type=None,
background=None,
)
ベース: JSONResponse
高性能なujsonライブラリを使用してデータをJSONにシリアライズするJSONレスポンス。
カスタムレスポンス - HTML、ストリーム、ファイルなどに関するFastAPIドキュメントで詳細をご覧ください。
パラメーター | 説明 |
---|---|
content
|
型: |
status_code
|
型: |
headers
|
型: |
media_type
|
型: |
background
|
型: |
starlette/responses.py
のソースコード
170 171 172 173 174 175 176 177 178 |
|
render ¶
render(content)
パラメーター | 説明 |
---|---|
content
|
型: |
fastapi/responses.py
のソースコード
31 32 33 |
|
init_headers ¶
init_headers(headers=None)
パラメーター | 説明 |
---|---|
headers
|
型: |
starlette/responses.py
のソースコード
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 |
|
set_cookie ¶
set_cookie(
key,
value="",
max_age=None,
expires=None,
path="/",
domain=None,
secure=False,
httponly=False,
samesite="lax",
)
パラメーター | 説明 |
---|---|
key
|
型: |
value
|
型: |
max_age
|
型: |
expires
|
型: |
path
|
型: |
domain
|
型: |
secure
|
型: |
httponly
|
型: |
samesite
|
型: |
starlette/responses.py
のソースコード
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 |
|
delete_cookie ¶
delete_cookie(
key,
path="/",
domain=None,
secure=False,
httponly=False,
samesite="lax",
)
パラメーター | 説明 |
---|---|
key
|
型: |
path
|
型: |
domain
|
型: |
secure
|
型: |
httponly
|
型: |
samesite
|
型: |
starlette/responses.py
のソースコード
124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 |
|
fastapi.responses.ORJSONResponse ¶
ORJSONResponse(
content,
status_code=200,
headers=None,
media_type=None,
background=None,
)
ベース: JSONResponse
データを JSON にシリアライズするために、高性能な orjson ライブラリを使用する JSON レスポンス。
カスタムレスポンス - HTML、ストリーム、ファイルなどに関するFastAPIドキュメントで詳細をご覧ください。
パラメーター | 説明 |
---|---|
content
|
型: |
status_code
|
型: |
headers
|
型: |
media_type
|
型: |
background
|
型: |
starlette/responses.py
のソースコード
170 171 172 173 174 175 176 177 178 |
|
render ¶
render(content)
パラメーター | 説明 |
---|---|
content
|
型: |
fastapi/responses.py
のソースコード
44 45 46 47 48 |
|
init_headers ¶
init_headers(headers=None)
パラメーター | 説明 |
---|---|
headers
|
型: |
starlette/responses.py
のソースコード
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 |
|
set_cookie ¶
set_cookie(
key,
value="",
max_age=None,
expires=None,
path="/",
domain=None,
secure=False,
httponly=False,
samesite="lax",
)
パラメーター | 説明 |
---|---|
key
|
型: |
value
|
型: |
max_age
|
型: |
expires
|
型: |
path
|
型: |
domain
|
型: |
secure
|
型: |
httponly
|
型: |
samesite
|
型: |
starlette/responses.py
のソースコード
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 |
|
delete_cookie ¶
delete_cookie(
key,
path="/",
domain=None,
secure=False,
httponly=False,
samesite="lax",
)
パラメーター | 説明 |
---|---|
key
|
型: |
path
|
型: |
domain
|
型: |
secure
|
型: |
httponly
|
型: |
samesite
|
型: |
starlette/responses.py
のソースコード
124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 |
|
Starlette レスポンス¶
fastapi.responses.FileResponse ¶
FileResponse(
path,
status_code=200,
headers=None,
media_type=None,
background=None,
filename=None,
stat_result=None,
method=None,
content_disposition_type="attachment",
)
ベース: Response
パラメーター | 説明 |
---|---|
path
|
型: |
status_code
|
型: |
headers
|
型: |
media_type
|
型: |
background
|
型: |
filename
|
型: |
stat_result
|
型: |
method
|
型: |
content_disposition_type
|
型: |
starlette/responses.py
のソースコード
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 |
|
render ¶
render(content)
パラメーター | 説明 |
---|---|
content
|
型: |
starlette/responses.py
のソースコード
44 45 46 47 48 49 |
|
init_headers ¶
init_headers(headers=None)
パラメーター | 説明 |
---|---|
headers
|
型: |
starlette/responses.py
のソースコード
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 |
|
set_cookie ¶
set_cookie(
key,
value="",
max_age=None,
expires=None,
path="/",
domain=None,
secure=False,
httponly=False,
samesite="lax",
)
パラメーター | 説明 |
---|---|
key
|
型: |
value
|
型: |
max_age
|
型: |
expires
|
型: |
path
|
型: |
domain
|
型: |
secure
|
型: |
httponly
|
型: |
samesite
|
型: |
starlette/responses.py
のソースコード
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 |
|
delete_cookie ¶
delete_cookie(
key,
path="/",
domain=None,
secure=False,
httponly=False,
samesite="lax",
)
パラメーター | 説明 |
---|---|
key
|
型: |
path
|
型: |
domain
|
型: |
secure
|
型: |
httponly
|
型: |
samesite
|
型: |
starlette/responses.py
のソースコード
124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 |
|
fastapi.responses.HTMLResponse ¶
HTMLResponse(
content=None,
status_code=200,
headers=None,
media_type=None,
background=None,
)
ベース: Response
パラメーター | 説明 |
---|---|
content
|
型: |
status_code
|
型: |
headers
|
型: |
media_type
|
型: |
background
|
型: |
starlette/responses.py
のソースコード
29 30 31 32 33 34 35 36 37 38 39 40 41 42 |
|
render ¶
render(content)
パラメーター | 説明 |
---|---|
content
|
型: |
starlette/responses.py
のソースコード
44 45 46 47 48 49 |
|
init_headers ¶
init_headers(headers=None)
パラメーター | 説明 |
---|---|
headers
|
型: |
starlette/responses.py
のソースコード
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 |
|
set_cookie ¶
set_cookie(
key,
value="",
max_age=None,
expires=None,
path="/",
domain=None,
secure=False,
httponly=False,
samesite="lax",
)
パラメーター | 説明 |
---|---|
key
|
型: |
value
|
型: |
max_age
|
型: |
expires
|
型: |
path
|
型: |
domain
|
型: |
secure
|
型: |
httponly
|
型: |
samesite
|
型: |
starlette/responses.py
のソースコード
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 |
|
delete_cookie ¶
delete_cookie(
key,
path="/",
domain=None,
secure=False,
httponly=False,
samesite="lax",
)
パラメーター | 説明 |
---|---|
key
|
型: |
path
|
型: |
domain
|
型: |
secure
|
型: |
httponly
|
型: |
samesite
|
型: |
starlette/responses.py
のソースコード
124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 |
|
fastapi.responses.JSONResponse ¶
JSONResponse(
content,
status_code=200,
headers=None,
media_type=None,
background=None,
)
ベース: Response
パラメーター | 説明 |
---|---|
content
|
型: |
status_code
|
型: |
headers
|
型: |
media_type
|
型: |
background
|
型: |
starlette/responses.py
のソースコード
170 171 172 173 174 175 176 177 178 |
|
render ¶
render(content)
パラメーター | 説明 |
---|---|
content
|
型: |
starlette/responses.py
のソースコード
180 181 182 183 184 185 186 187 |
|
init_headers ¶
init_headers(headers=None)
パラメーター | 説明 |
---|---|
headers
|
型: |
starlette/responses.py
のソースコード
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 |
|
set_cookie ¶
set_cookie(
key,
value="",
max_age=None,
expires=None,
path="/",
domain=None,
secure=False,
httponly=False,
samesite="lax",
)
パラメーター | 説明 |
---|---|
key
|
型: |
value
|
型: |
max_age
|
型: |
expires
|
型: |
path
|
型: |
domain
|
型: |
secure
|
型: |
httponly
|
型: |
samesite
|
型: |
starlette/responses.py
のソースコード
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 |
|
delete_cookie ¶
delete_cookie(
key,
path="/",
domain=None,
secure=False,
httponly=False,
samesite="lax",
)
パラメーター | 説明 |
---|---|
key
|
型: |
path
|
型: |
domain
|
型: |
secure
|
型: |
httponly
|
型: |
samesite
|
型: |
starlette/responses.py
のソースコード
124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 |
|
fastapi.responses.PlainTextResponse ¶
PlainTextResponse(
content=None,
status_code=200,
headers=None,
media_type=None,
background=None,
)
ベース: Response
パラメーター | 説明 |
---|---|
content
|
型: |
status_code
|
型: |
headers
|
型: |
media_type
|
型: |
background
|
型: |
starlette/responses.py
のソースコード
29 30 31 32 33 34 35 36 37 38 39 40 41 42 |
|
render ¶
render(content)
パラメーター | 説明 |
---|---|
content
|
型: |
starlette/responses.py
のソースコード
44 45 46 47 48 49 |
|
init_headers ¶
init_headers(headers=None)
パラメーター | 説明 |
---|---|
headers
|
型: |
starlette/responses.py
のソースコード
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 |
|
set_cookie ¶
set_cookie(
key,
value="",
max_age=None,
expires=None,
path="/",
domain=None,
secure=False,
httponly=False,
samesite="lax",
)
パラメーター | 説明 |
---|---|
key
|
型: |
value
|
型: |
max_age
|
型: |
expires
|
型: |
path
|
型: |
domain
|
型: |
secure
|
型: |
httponly
|
型: |
samesite
|
型: |
starlette/responses.py
のソースコード
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 |
|
delete_cookie ¶
delete_cookie(
key,
path="/",
domain=None,
secure=False,
httponly=False,
samesite="lax",
)
パラメーター | 説明 |
---|---|
key
|
型: |
path
|
型: |
domain
|
型: |
secure
|
型: |
httponly
|
型: |
samesite
|
型: |
starlette/responses.py
のソースコード
124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 |
|
fastapi.responses.RedirectResponse ¶
RedirectResponse(
url, status_code=307, headers=None, background=None
)
ベース: Response
パラメーター | 説明 |
---|---|
url
|
TYPE: |
status_code
|
TYPE: |
headers
|
型: |
background
|
型: |
starlette/responses.py
のソースコード
191 192 193 194 195 196 197 198 199 |
|
render ¶
render(content)
パラメーター | 説明 |
---|---|
content
|
型: |
starlette/responses.py
のソースコード
44 45 46 47 48 49 |
|
init_headers ¶
init_headers(headers=None)
パラメーター | 説明 |
---|---|
headers
|
型: |
starlette/responses.py
のソースコード
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 |
|
set_cookie ¶
set_cookie(
key,
value="",
max_age=None,
expires=None,
path="/",
domain=None,
secure=False,
httponly=False,
samesite="lax",
)
パラメーター | 説明 |
---|---|
key
|
型: |
value
|
型: |
max_age
|
型: |
expires
|
型: |
path
|
型: |
domain
|
型: |
secure
|
型: |
httponly
|
型: |
samesite
|
型: |
starlette/responses.py
のソースコード
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 |
|
delete_cookie ¶
delete_cookie(
key,
path="/",
domain=None,
secure=False,
httponly=False,
samesite="lax",
)
パラメーター | 説明 |
---|---|
key
|
型: |
path
|
型: |
domain
|
型: |
secure
|
型: |
httponly
|
型: |
samesite
|
型: |
starlette/responses.py
のソースコード
124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 |
|
fastapi.responses.Response ¶
Response(
content=None,
status_code=200,
headers=None,
media_type=None,
background=None,
)
パラメーター | 説明 |
---|---|
content
|
型: |
status_code
|
型: |
headers
|
型: |
media_type
|
型: |
background
|
型: |
starlette/responses.py
のソースコード
29 30 31 32 33 34 35 36 37 38 39 40 41 42 |
|
render ¶
render(content)
パラメーター | 説明 |
---|---|
content
|
型: |
starlette/responses.py
のソースコード
44 45 46 47 48 49 |
|
init_headers ¶
init_headers(headers=None)
パラメーター | 説明 |
---|---|
headers
|
型: |
starlette/responses.py
のソースコード
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 |
|
set_cookie ¶
set_cookie(
key,
value="",
max_age=None,
expires=None,
path="/",
domain=None,
secure=False,
httponly=False,
samesite="lax",
)
パラメーター | 説明 |
---|---|
key
|
型: |
value
|
型: |
max_age
|
型: |
expires
|
型: |
path
|
型: |
domain
|
型: |
secure
|
型: |
httponly
|
型: |
samesite
|
型: |
starlette/responses.py
のソースコード
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 |
|
delete_cookie ¶
delete_cookie(
key,
path="/",
domain=None,
secure=False,
httponly=False,
samesite="lax",
)
パラメーター | 説明 |
---|---|
key
|
型: |
path
|
型: |
domain
|
型: |
secure
|
型: |
httponly
|
型: |
samesite
|
型: |
starlette/responses.py
のソースコード
124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 |
|
fastapi.responses.StreamingResponse ¶
StreamingResponse(
content,
status_code=200,
headers=None,
media_type=None,
background=None,
)
ベース: Response
パラメーター | 説明 |
---|---|
content
|
タイプ: |
status_code
|
型: |
headers
|
型: |
media_type
|
型: |
background
|
型: |
starlette/responses.py
のソースコード
211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 |
|
render ¶
render(content)
パラメーター | 説明 |
---|---|
content
|
型: |
starlette/responses.py
のソースコード
44 45 46 47 48 49 |
|
init_headers ¶
init_headers(headers=None)
パラメーター | 説明 |
---|---|
headers
|
型: |
starlette/responses.py
のソースコード
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 |
|
set_cookie ¶
set_cookie(
key,
value="",
max_age=None,
expires=None,
path="/",
domain=None,
secure=False,
httponly=False,
samesite="lax",
)
パラメーター | 説明 |
---|---|
key
|
型: |
value
|
型: |
max_age
|
型: |
expires
|
型: |
path
|
型: |
domain
|
型: |
secure
|
型: |
httponly
|
型: |
samesite
|
型: |
starlette/responses.py
のソースコード
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 |
|
delete_cookie ¶
delete_cookie(
key,
path="/",
domain=None,
secure=False,
httponly=False,
samesite="lax",
)
パラメーター | 説明 |
---|---|
key
|
型: |
path
|
型: |
domain
|
型: |
secure
|
型: |
httponly
|
型: |
samesite
|
型: |
starlette/responses.py
のソースコード
124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 |
|