Coverage for docs_src / request_forms / 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 1abcdefghi
3from fastapi import FastAPI, Form 1abcdefghi
5app = FastAPI() 1abcdefghi
8@app.post("/login/") 1abcdefghi
9async def login(username: Annotated[str, Form()], password: Annotated[str, Form()]): 1abcdefghi
10 return {"username": username} 1jklm