Coverage for docs_src/request_forms/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, Form 1abcdefg
2from typing_extensions import Annotated 1abcdefg
4app = FastAPI() 1abcdefg
7@app.post("/login/") 1abcdefg
8async def login(username: Annotated[str, Form()], password: Annotated[str, Form()]): 1abcdefg
9 return {"username": username} 1hijklmn