mirror of https://github.com/tiangolo/fastapi.git
15 lines
326 B
Python
15 lines
326 B
Python
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,
|
|
}
|