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

17 statements  

« prev     ^ index     » next       coverage.py v7.13.3, created at 2026-02-12 18:15 +0000

1from fastapi import Depends, FastAPI, HTTPException 1abc

2 

3app = FastAPI() 1abc

4 

5 

6class InternalError(Exception): 1abc

7 pass 1abc

8 

9 

10def get_username(): 1abc

11 try: 1mjdenkfgolhi

12 yield "Rick" 1mjdenkfgolhi

13 except InternalError: 1jdekfglhi

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

15 raise 1defghi

16 

17 

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

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

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

21 raise InternalError( 1defghi

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

23 ) 

24 if item_id != "plumbus": 1mjnkol

25 raise HTTPException( 1jkl

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

27 ) 

28 return item_id 1mno