ASGI Streaming Wire Formats: SSE and WebSockets Compare Server-Sent Events (SSE) and WebSockets at the wire level, and see how Uvicorn maps them into ASGI events. Keywords: Server-Sent Events, SSE, WebSocket, ASGI, Uvicorn, FastAPI internals
ASGI ASGI in Practice Understand how ASGI apps use scope, receive, and send to handle streaming requests and responses in FastAPI and Starlette. Keywords: ASGI events, uvicorn, FastAPI internals, http.response.body, backend basics
Uvicorn From Socket to Scope Learn how Uvicorn transforms raw TCP bytes into structured ASGI scopes your FastAPI app can use.
FastAPI HTTP on the Wire See the raw HTTP text your browser sends, and learn how that text becomes a structured request inside your app.