Coverage for docs_src / security / tutorial006_an_py310.py: 100%
8 statements
« prev ^ index » next coverage.py v7.13.3, created at 2026-02-12 18:15 +0000
« prev ^ index » next coverage.py v7.13.3, created at 2026-02-12 18:15 +0000
1from typing import Annotated 1abc
3from fastapi import Depends, FastAPI 1abc
4from fastapi.security import HTTPBasic, HTTPBasicCredentials 1abc
6app = FastAPI() 1abc
8security = HTTPBasic() 1abc
11@app.get("/users/me") 1abc
12def read_current_user(credentials: Annotated[HTTPBasicCredentials, Depends(security)]): 1abc
13 return {"username": credentials.username, "password": credentials.password} 1def