Last active
March 18, 2026 11:55
-
-
Save graingert/7362b83c4f0be5477e3d4a7c81cd65ca to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from collections.abc import AsyncGenerator | |
| from contextlib import asynccontextmanager | |
| from fastapi import FastAPI, Request | |
| from pydantic import BaseModel | |
| from typing import TypedDict | |
| import anyio | |
| import anyio.abc | |
| class State(TypedDict): | |
| tg: anyio.abc.TaskGroup | |
| class ProcessResponse(BaseModel): | |
| status: str | |
| async def background_job(data: str) -> None: | |
| print(f"Processing: {data}") | |
| await anyio.sleep(1) | |
| print(f"Done: {data}") | |
| @asynccontextmanager | |
| async def lifespan(app: FastAPI) -> AsyncGenerator[State]: | |
| async with anyio.create_task_group() as tg: | |
| yield State(tg=tg) | |
| tg.cancel_scope.cancel() | |
| app = FastAPI(lifespan=lifespan) | |
| @app.post("/process", status_code=202) | |
| async def process(data: str, request: Request[State]) -> ProcessResponse: | |
| request.state["tg"].start_soon(background_job, data) | |
| return ProcessResponse(status="accepted") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from collections.abc import AsyncGenerator | |
| from contextlib import asynccontextmanager | |
| from fastapi import FastAPI, Request | |
| from pydantic import BaseModel | |
| from typing import TypedDict | |
| import anyio | |
| import anyio.abc | |
| class State(TypedDict): | |
| tg: anyio.abc.TaskGroup | |
| class ProcessResponse(BaseModel): | |
| status: str | |
| class Done(Exception): | |
| pass | |
| async def background_job(data: str) -> None: | |
| print(f"Processing: {data}") | |
| await anyio.sleep(1) | |
| print(f"Done: {data}") | |
| @asynccontextmanager | |
| async def lifespan(app: FastAPI) -> AsyncGenerator[State]: | |
| try: | |
| async with anyio.create_task_group() as tg: | |
| yield State(tg=tg) | |
| raise Done | |
| except* Done: | |
| pass | |
| app = FastAPI(lifespan=lifespan) | |
| @app.post("/process", status_code=202) | |
| async def process(data: str, request: Request[State]) -> ProcessResponse: | |
| request.state["tg"].start_soon(background_job, data) | |
| return ProcessResponse(status="accepted") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment