Getting Started
Installation
pip install capo-kafka
Usage
from capo_kafka import AsyncKafkaClient
async def main():
async with AsyncKafkaClient() as kafka:
# Example: call the batch_associate_scram_secret operation
response = await kafka.batch_associate_scram_secret()
print(response["cluster_arn"])
Pagination
Some operations in this SDK support pagination. If the operation supports pagination it will have an iter_ prefixed method that returns an async iterator.
from capo_kafka import AsyncKafkaClient
async def main():
async with AsyncKafkaClient() as kafka:
# Example: paginate over describe_topic_partitions
async for item in kafka.iter_describe_topic_partitions():
print(item)
Error Handling
The SDK raises exceptions for errors returned by the API. Catch them to handle failures gracefully.
from capo_kafka import AsyncKafkaClient
from capo_kafka.error import BadRequestException
async def main():
async with AsyncKafkaClient() as kafka:
try:
await kafka.batch_associate_scram_secret()
except BadRequestException 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_kafka import AsyncKafkaClient
async def main():
async with AsyncKafkaClient() as kafka:
# Default: 3 attempts for every operation
response = await kafka.batch_associate_scram_secret()
# Override per operation
response = await kafka.batch_associate_scram_secret(config_overrides={"retry_max_attempts": 5})
# Disable retries for this call
response = await kafka.batch_associate_scram_secret(config_overrides={"retry_max_attempts": 1})
Release files for capo-kafka 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_kafka-0.1.0.tar.gz | 142.7 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| capo_kafka-0.1.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 545.4 kB
Release files / capo_kafka-0.1.0.tar.gz
| Download URL | capo_kafka-0.1.0.tar.gz |
|---|---|
| Size | 142.7 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
df1eb555f346bec346899b85bde9d93026cc32a8c86271476690a151ed55420b
|
|
BLAKE2b-256 checksum How to use checksums |
64ee6f95d7409dab52538cdb26213c1c468cfbe55ff0b5243aad19a80ba88a18
|
| 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_kafka-0.1.0-py3-none-any.whl
| Download URL | capo_kafka-0.1.0-py3-none-any.whl |
|---|---|
| Size | 402.8 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
60153abcb2627462af01bf04051ef5eec4ee0704e113e4e2c0500f3cd17e6a7b
|
|
BLAKE2b-256 checksum How to use checksums |
4ddce32c50ff0b1e5fa71f68fde832069070defadc0ff0a586187b29b3ad6709
|
| 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}
|