Coverage for docs_src/request_forms_and_files/tutorial001_an.py: 100%
6 statements
« prev ^ index » next coverage.py v7.6.1, created at 2025-12-04 08:29 +0000
« prev ^ index » next coverage.py v7.6.1, created at 2025-12-04 08:29 +0000
1from fastapi import FastAPI, File, Form, UploadFile 1abcdefg
2from typing_extensions import Annotated 1abcdefg
4app = FastAPI() 1abcdefg
7@app.post("/files/") 1abcdefg
8async def create_file( 1abcdefg
9 file: Annotated[bytes, File()],
10 fileb: Annotated[UploadFile, File()],
11 token: Annotated[str, Form()],
12):
13 return { 1hijklmn
14 "file_size": len(file),
15 "token": token,
16 "fileb_content_type": fileb.content_type,
17 }