fastapi-master/docs_src/request_files/tutorial001_an_py39.py

16 lines
322 B
Python
Raw Permalink Normal View History

2024-08-24 12:41:47 +08:00
from typing import Annotated
from fastapi import FastAPI, File, UploadFile
app = FastAPI()
@app.post("/files/")
async def create_file(file: Annotated[bytes, File()]):
return {"file_size": len(file)}
@app.post("/uploadfile/")
async def create_upload_file(file: UploadFile):
return {"filename": file.filename}