Coverage for docs_src / events / tutorial002_py310.py: 100%

9 statements  

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

1from fastapi import FastAPI 1abc

2 

3app = FastAPI() 1abc

4 

5 

6@app.on_event("shutdown") 1abc

7def shutdown_event(): 1abc

8 with open("log.txt", mode="a") as log: 1dgehfi

9 log.write("Application shutdown") 1dgehfi

10 

11 

12@app.get("/items/") 1abc

13async def read_items(): 1abc

14 return [{"name": "Foo"}] 1def