pip install fasttransportEvery small API wrapper needs the same plumbing: headers merged into each request, responses decoded by content type, errors that carry the response body, and SSE parsing for streams. Most wrappers also repeat the same mistake. They create one httpx client at startup and keep it, which pins its pooled connections to the event loop that created them. Code that later runs under a different loop, common in tests and background tasks, then fails with confusing connection errors.
fasttransport is that plumbing written once, on httpx2. Each request gets a fresh client and nothing is tied to a loop. Pass client= to manage a persistent client yourself. fastspec builds its spec-driven clients on these transports, ghapi its GitHub client, and solveit its gateway clients.
SyncTransport.request executes a call and returns the decoded body: JSON arrives as a dict, text as text, and anything else as bytes. HTTP errors raise with the response body included in the message.
from fasttransport.core import *SyncTransport().request('GET', 'https://jsonplaceholder.typicode.com/todos/1')AsyncTransport is the same, awaited. It also has stream, an async generator that parses SSE events into JSON dicts. The core page streams a chat completion with it.
await AsyncTransport().request('GET', 'https://jsonplaceholder.typicode.com/users/1')A small REST client is a base URL plus verbs. HttpCli verbs take a path relative to the base, kwargs become the payload (query params on get and delete, the JSON body otherwise), and decoded bodies come back:
cli = HttpCli('https://jsonplaceholder.typicode.com')
cli.get('todos/1')cli.post('posts', title='hi')AsyncHttpCli is the async twin. Its verbs return awaitables:
acli = AsyncHttpCli('https://jsonplaceholder.typicode.com')
await acli.get('todos/1')A client fails in three ways: an HTTP error status, a transport failure such as a timeout, and an error event arriving mid-stream. fasttransport.errors turns all three into one APIError, carrying the parsed message, provider code, request id, and whether the failure is worth retrying. fastspec, ghapi, and fastllm all raise that one type, so calling code catches it once whatever the provider. The errors page shows each provider’s error shape parsed into it.
The core page documents the rest with runnable examples: SSE streaming, error enrichment, multipart uploads, and managing your own client.