Coverage for docs_src / security / tutorial006_py310.py: 100%

7 statements  

« prev     ^ index     » next       coverage.py v7.13.3, created at 2026-04-06 01:24 +0000

1from fastapi import Depends, FastAPI 1abcdefgh

2from fastapi.security import HTTPBasic, HTTPBasicCredentials 1abcdefgh

3 

4app = FastAPI() 1abcdefgh

5 

6security = HTTPBasic() 1abcdefgh

7 

8 

9@app.get("/users/me") 1abcdefgh

10def read_current_user(credentials: HTTPBasicCredentials = Depends(security)): 1abcdefgh

11 return {"username": credentials.username, "password": credentials.password} 1ijkl