Getting Started
Installation
pip install capo-dynamodb
Usage
from capo_dynamodb import AsyncDynamoDBClient
async def main():
async with AsyncDynamoDBClient() as dynamo_db:
# Example: call the batch_execute_statement operation
response = await dynamo_db.batch_execute_statement()
print(response["responses"])
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_dynamodb import AsyncDynamoDBClient
async def main():
async with AsyncDynamoDBClient() as dynamo_db:
# Example: paginate over list_tables
async for item in dynamo_db.iter_list_tables():
print(item)
Waiters
Waiters poll an operation until a resource reaches a desired state. If the operation supports waiters it will have a wait_until_ prefixed method.
from capo_dynamodb import AsyncDynamoDBClient
async def main():
async with AsyncDynamoDBClient() as dynamo_db:
# Example: wait for table_not_exists
await dynamo_db.wait_until_table_not_exists(max_wait_time=300)
Error Handling
The SDK raises exceptions for errors returned by the API. Catch them to handle failures gracefully.
from capo_dynamodb import AsyncDynamoDBClient
from capo_dynamodb.error import InternalServerError
async def main():
async with AsyncDynamoDBClient() as dynamo_db:
try:
await dynamo_db.batch_execute_statement()
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 import AsyncDynamoDBClient
async def main():
async with AsyncDynamoDBClient() as dynamo_db:
# Default: 3 attempts for every operation
response = await dynamo_db.batch_execute_statement()
# Override per operation
response = await dynamo_db.batch_execute_statement(config_overrides={"retry_max_attempts": 5})
# Disable retries for this call
response = await dynamo_db.batch_execute_statement(config_overrides={"retry_max_attempts": 1})
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file capo_dynamodb-0.4.0.tar.gz.
File metadata
- Download URL: capo_dynamodb-0.4.0.tar.gz
- Upload date:
- Size: 333.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f503c65a3c1a243943e0c2cd4ed96a0f34b4358622b8a81b52184ccdc80a29a4
|
|
| MD5 |
7cb58be4c6d241aca23883de45bdd533
|
|
| BLAKE2b-256 |
4b0a0fa9834ff7e6c689f7d7fe23ef9574432197ef760e81d5b855cb9d5a8138
|
File details
Details for the file capo_dynamodb-0.4.0-py3-none-any.whl.
File metadata
- Download URL: capo_dynamodb-0.4.0-py3-none-any.whl
- Upload date:
- Size: 674.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e795dda76b1f87676210c0993f609e0d7914ea6d1b045ce5d1bc9d9664e6c506
|
|
| MD5 |
8859919886d57c51a91b88188174cb9e
|
|
| BLAKE2b-256 |
1f024bcd9fd8fd353beeee15a8b63705e1d702cb5641b4bc2f75130fc0c1864b
|