Coverage for docs_src/request_forms/tutorial001_an_py39.py: 100%

6 statements  

« prev     ^ index     » next       coverage.py v7.6.1, created at 2025-12-04 08:29 +0000

1from typing import Annotated 1abcdef

2 

3from fastapi import FastAPI, Form 1abcdef

4 

5app = FastAPI() 1abcdef

6 

7 

8@app.post("/login/") 1abcdef

9async def login(username: Annotated[str, Form()], password: Annotated[str, Form()]): 1abcdef

10 return {"username": username} 1ghijkl