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

7 statements  

« prev     ^ index     » next       coverage.py v7.6.1, created at 2025-05-06 08:24 +0000

1from fastapi import Depends, FastAPI 1abcdef

2from fastapi.security import HTTPBasic, HTTPBasicCredentials 1abcdef

3 

4app = FastAPI() 1abcdef

5 

6security = HTTPBasic() 1abcdef

7 

8 

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

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

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