Getting Started
Installation
pip install capo-firehose
Usage
from capo_firehose import AsyncFirehoseClient
async def main():
async with AsyncFirehoseClient() as firehose:
# Example: call the create_delivery_stream operation
response = await firehose.create_delivery_stream()
print(response["delivery_stream_arn"])
Error Handling
The SDK raises exceptions for errors returned by the API. Catch them to handle failures gracefully.
from capo_firehose import AsyncFirehoseClient
from capo_firehose.error import InvalidArgumentException
async def main():
async with AsyncFirehoseClient() as firehose:
try:
await firehose.create_delivery_stream()
except InvalidArgumentException as e:
print(f"Error: {e}")
print(e.data) # additional error data
Retrying
The SDK retries failed operations automatically. Retry behaviour follows the Smithy specification: errors are retried based on their is_retryable and is_throttling_error attributes. Throttling errors use a longer base delay. Network-level failures (connection errors and timeouts) are also retried. Non-retryable errors, such as client errors without the @retryable trait, are raised immediately without further attempts.
The number of attempts defaults to 3 and can be changed at the client level via retry_max_attempts, or per call via config_overrides.
from capo_firehose import AsyncFirehoseClient
async def main():
async with AsyncFirehoseClient() as firehose:
# Default: 3 attempts for every operation
response = await firehose.create_delivery_stream()
# Override per operation
response = await firehose.create_delivery_stream(config_overrides={"retry_max_attempts": 5})
# Disable retries for this call
response = await firehose.create_delivery_stream(config_overrides={"retry_max_attempts": 1})
Release files for capo-firehose 0.1.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| capo_firehose-0.1.0.tar.gz | 143.3 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| capo_firehose-0.1.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 459.7 kB
Release files / capo_firehose-0.1.0.tar.gz
| Download URL | capo_firehose-0.1.0.tar.gz |
|---|---|
| Size | 143.3 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
4d87ae34f0571f9ec0ff644b99b12d55ba681596ce0fba9862633f3498e0e6bc
|
|
BLAKE2b-256 checksum How to use checksums |
ea31135ca6ec3bfe7b5026938e9ecca893e56191e28f7ce6ceba7678eb20d638
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.19 {"installer":{"name":"uv","version":"0.12.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / capo_firehose-0.1.0-py3-none-any.whl
| Download URL | capo_firehose-0.1.0-py3-none-any.whl |
|---|---|
| Size | 316.4 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
449b8f4f5a14bba5679890856749185f669fa89d31d2cf4c327f06ea928870a5
|
|
BLAKE2b-256 checksum How to use checksums |
9f50114951bb6d9d3a26f6c4130abae5a937a6d7100027111ed391035becee9b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.19 {"installer":{"name":"uv","version":"0.12.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|