Coverage for docs_src/background_tasks/tutorial002_an_py310.py: 100%

16 statements  

« prev     ^ index     » next       coverage.py v7.6.1, created at 2024-08-08 03:53 +0000

1from typing import Annotated 1abc

2 

3from fastapi import BackgroundTasks, Depends, FastAPI 1abc

4 

5app = FastAPI() 1abc

6 

7 

8def write_log(message: str): 1abc

9 with open("log.txt", mode="a") as log: 1abc

10 log.write(message) 1abc

11 

12 

13def get_query(background_tasks: BackgroundTasks, q: str | None = None): 1abc

14 if q: 1abc

15 message = f"found query: {q}\n" 1abc

16 background_tasks.add_task(write_log, message) 1abc

17 return q 1abc

18 

19 

20@app.post("/send-notification/{email}") 1abc

21async def send_notification( 1abc

22 email: str, background_tasks: BackgroundTasks, q: Annotated[str, Depends(get_query)] 

23): 

24 message = f"message to {email}\n" 1abc

25 background_tasks.add_task(write_log, message) 1abc

26 return {"message": "Message sent"} 1abc