Coverage for docs_src / dependencies / tutorial008d_py310.py: 100%

17 statements  

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

1from fastapi import Depends, FastAPI, HTTPException 1abcdefg

2 

3app = FastAPI() 1abcdefg

4 

5 

6class InternalError(Exception): 1abcdefg

7 pass 1abcdefg

8 

9 

10def get_username(): 1abcdefg

11 try: 1sohipjtqklurmn

12 yield "Rick" 1sohipjtqklurmn

13 except InternalError: 1ohipjqklrmn

14 print("We don't swallow the internal error here, we raise again 😎") 1hivjklmn

15 raise 1hivjklmn

16 

17 

18@app.get("/items/{item_id}") 1abcdefg

19def get_item(item_id: str, username: str = Depends(get_username)): 1abcdefg

20 if item_id == "portal-gun": 1sohipjtqklurmn

21 raise InternalError( 1hivjklmn

22 f"The portal gun is too dangerous to be owned by {username}" 

23 ) 

24 if item_id != "plumbus": 1soptqur

25 raise HTTPException( 1opqr

26 status_code=404, detail="Item not found, there's only a plumbus here" 

27 ) 

28 return item_id 1swtu