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

17 statements  

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

1from typing import Union 1abcde

2 

3from fastapi import BackgroundTasks, Depends, FastAPI 1abcde

4from typing_extensions import Annotated 1abcde

5 

6app = FastAPI() 1abcde

7 

8 

9def write_log(message: str): 1abcde

10 with open("log.txt", mode="a") as log: 1abcde

11 log.write(message) 1abcde

12 

13 

14def get_query(background_tasks: BackgroundTasks, q: Union[str, None] = None): 1abcde

15 if q: 1abcde

16 message = f"found query: {q}\n" 1abcde

17 background_tasks.add_task(write_log, message) 1abcde

18 return q 1abcde

19 

20 

21@app.post("/send-notification/{email}") 1abcde

22async def send_notification( 1abcde

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

24): 

25 message = f"message to {email}\n" 1abcde

26 background_tasks.add_task(write_log, message) 1abcde

27 return {"message": "Message sent"} 1abcde