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

5 statements  

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

1from fastapi import FastAPI, Form 1abcdefg

2 

3app = FastAPI() 1abcdefg

4 

5 

6@app.post("/login/") 1abcdefg

7async def login(username: str = Form(), password: str = Form()): 1abcdefg

8 return {"username": username} 1hijklmn