Coverage for docs_src/security/tutorial006.py: 100%
7 statements
« prev ^ index » next coverage.py v7.6.1, created at 2024-08-08 03:53 +0000
« prev ^ index » next coverage.py v7.6.1, created at 2024-08-08 03:53 +0000
1from fastapi import Depends, FastAPI 1abcde
2from fastapi.security import HTTPBasic, HTTPBasicCredentials 1abcde
4app = FastAPI() 1abcde
6security = HTTPBasic() 1abcde
9@app.get("/users/me") 1abcde
10def read_current_user(credentials: HTTPBasicCredentials = Depends(security)): 1abcde
11 return {"username": credentials.username, "password": credentials.password} 1abcde