mirror of
https://github.com/fastapi/fastapi.git
synced 2026-01-10 23:18:02 -05:00
9 lines
207 B
Python
9 lines
207 B
Python
from fastapi import FastAPI, File, Form
|
|
|
|
app = FastAPI()
|
|
|
|
|
|
@app.post("/files/")
|
|
async def create_file(*, file: bytes = File(...), token: str = Form(...)):
|
|
return {"file_size": len(file), "token": token}
|