404

404

from fastapi import FastAPI, Response, status, HTTPException

app = FastAPI()

@app.get("/posts/{id}")
def get_post(id: int, response: Response):
    post = find_post(id)
    if not post:
		raise HTTPException(status_code=status.HTTP_404_NOT_FOUND,
							detail=f"post with id: {id} was not found")
    return {"post_detail": post}