Streaming API — Aquilia Documentation
Comprehensive guide and documentation for Streaming API in the Aquilia framework. View API reference, examples, and implementation patterns.
HTTP Client / Core API streaming.py Asynchronous request-body and response-body streaming primitives for AquilaHTTP. 1. Overview streaming.py defines progress callbacks, backpressure mechanisms, and streaming helpers. 2. API Reference class StreamingBody: def __init__( self, generator: AsyncIterator[bytes] | BinaryIO, chunk_size: int = 8192, on_progress: Callable[[UploadProgress], None] | None = None, ) )
Go to Homepage