Coverage for docs_src / using_request_directly / tutorial001_py310.py: 100%
6 statements
« prev ^ index » next coverage.py v7.13.3, created at 2026-02-12 18:15 +0000
« prev ^ index » next coverage.py v7.13.3, created at 2026-02-12 18:15 +0000
1from fastapi import FastAPI, Request 1abcd
3app = FastAPI() 1abcd
6@app.get("/items/{item_id}") 1abcd
7def read_root(item_id: str, request: Request): 1abcd
8 client_host = request.client.host 1efg
9 return {"client_host": client_host, "item_id": item_id} 1efg