Coverage for docs_src/handling_errors/tutorial001.py: 100%
8 statements
« prev ^ index » next coverage.py v7.6.1, created at 2025-05-05 00:03 +0000
« prev ^ index » next coverage.py v7.6.1, created at 2025-05-05 00:03 +0000
1from fastapi import FastAPI, HTTPException 1abcdef
3app = FastAPI() 1abcdef
5items = {"foo": "The Foo Wrestlers"} 1abcdef
8@app.get("/items/{item_id}") 1abcdef
9async def read_item(item_id: str): 1abcdef
10 if item_id not in items: 1ghijklmnopqr
11 raise HTTPException(status_code=404, detail="Item not found") 1hjlnpr
12 return {"item": items[item_id]} 1gikmoq