Coverage for docs_src / request_forms_and_files / tutorial001_an_py310.py: 100%
6 statements
« prev ^ index » next coverage.py v7.13.3, created at 2026-04-06 01:24 +0000
« prev ^ index » next coverage.py v7.13.3, created at 2026-04-06 01:24 +0000
1from typing import Annotated 1abcdefg
3from fastapi import FastAPI, File, Form, UploadFile 1abcdefg
5app = FastAPI() 1abcdefg
8@app.post("/files/") 1abcdefg
9async def create_file( 1abcdefg
10 file: Annotated[bytes, File()],
11 fileb: Annotated[UploadFile, File()],
12 token: Annotated[str, Form()],
13):
14 return { 1hijk
15 "file_size": len(file),
16 "token": token,
17 "fileb_content_type": fileb.content_type,
18 }