FastAPI 공식문서 따라하기[21] - Request Forms and Files
https://fastapi.tiangolo.com/tutorial/request-forms-and-files/ 공식문서 따라하는 글
☑️ Request Files
이 장은 File
과 Form
을 같이 받을 수 있다는 것을 알려주는 챕터이다.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
from fastapi import FastAPI, File, Form, UploadFile
app = FastAPI()
@app.post("/files/")
async def create_file(
file: bytes = File(), fileb: UploadFile = File(), token: str = Form()
):
return {
"file_size": len(file),
"token": token,
"fileb_content_type": fileb.content_type,
}
파일과 폼 필드에 있는 데이터를 다 받을 수 있다.
This post is licensed under CC BY 4.0 by the author.