Getting Started
Installation
pip install capo-dynamodb-streams
Usage
from capo_dynamodb_streams import AsyncDynamoDBStreamsClient
async def main():
async with AsyncDynamoDBStreamsClient() as dynamo_db_streams:
# Example: call the describe_stream operation
response = await dynamo_db_streams.describe_stream()
print(response["stream_description"])
Error Handling
The SDK raises exceptions for errors returned by the API. Catch them to handle failures gracefully.
from capo_dynamodb_streams import AsyncDynamoDBStreamsClient
from capo_dynamodb_streams.error import InternalServerError
async def main():
async with AsyncDynamoDBStreamsClient() as dynamo_db_streams:
try:
await dynamo_db_streams.describe_stream()
except InternalServerError 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_dynamodb_streams import AsyncDynamoDBStreamsClient
async def main():
async with AsyncDynamoDBStreamsClient() as dynamo_db_streams:
# Default: 3 attempts for every operation
response = await dynamo_db_streams.describe_stream()
# Override per operation
response = await dynamo_db_streams.describe_stream(config_overrides={"retry_max_attempts": 5})
# Disable retries for this call
response = await dynamo_db_streams.describe_stream(config_overrides={"retry_max_attempts": 1})
Release files for capo-dynamodb-streams 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_dynamodb_streams-0.1.0.tar.gz | 58.6 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| capo_dynamodb_streams-0.1.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 153.5 kB
Release files / capo_dynamodb_streams-0.1.0.tar.gz
| Download URL | capo_dynamodb_streams-0.1.0.tar.gz |
|---|---|
| Size | 58.6 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
4fb74dae76f557478d5038d7b7bb8319fcd43b063baece8e1686ea7242bbb470
|
|
BLAKE2b-256 checksum How to use checksums |
b8d206b136d39c4675520969f64db11999279b8c0d11103f7ee2d98471655873
|
| 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_dynamodb_streams-0.1.0-py3-none-any.whl
| Download URL | capo_dynamodb_streams-0.1.0-py3-none-any.whl |
|---|---|
| Size | 94.9 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
c844ca3478f6d1cca5907aff9e31cd16b87c4f59cf036ac066836d96c8ac147c
|
|
BLAKE2b-256 checksum How to use checksums |
9482ec9fcdeedf9f14a6eb7db7399b331c60b9681f59bfc706163237caae1ccc
|
| 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}
|