Getting Started
Installation
pip install capo-dax
Usage
from capo_dax import AsyncDAXClient
async def main():
async with AsyncDAXClient() as dax:
# Example: call the create_cluster operation
response = await dax.create_cluster()
print(response["cluster"])
Error Handling
The SDK raises exceptions for errors returned by the API. Catch them to handle failures gracefully.
from capo_dax import AsyncDAXClient
from capo_dax.error import ClusterAlreadyExistsFault
async def main():
async with AsyncDAXClient() as dax:
try:
await dax.create_cluster()
except ClusterAlreadyExistsFault 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_dax import AsyncDAXClient
async def main():
async with AsyncDAXClient() as dax:
# Default: 3 attempts for every operation
response = await dax.create_cluster()
# Override per operation
response = await dax.create_cluster(config_overrides={"retry_max_attempts": 5})
# Disable retries for this call
response = await dax.create_cluster(config_overrides={"retry_max_attempts": 1})
Release files for capo-dax 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_dax-0.1.0.tar.gz | 88.1 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| capo_dax-0.1.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 276.6 kB
Release files / capo_dax-0.1.0.tar.gz
| Download URL | capo_dax-0.1.0.tar.gz |
|---|---|
| Size | 88.1 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
f0eba42e1692b374be7a4c3d8c9745a475ee2ad00a8064073f0c404adf226e54
|
|
BLAKE2b-256 checksum How to use checksums |
eae8c408545a58973a8d14a2562e9c05d5ee2341b73053f19436043be8dcf4a8
|
| 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_dax-0.1.0-py3-none-any.whl
| Download URL | capo_dax-0.1.0-py3-none-any.whl |
|---|---|
| Size | 188.5 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
eb2ff11561c98d774f174559f6b1d2c8543941c65857a32180abe3a56ade8fd3
|
|
BLAKE2b-256 checksum How to use checksums |
378628bf0338a2b729916a15dfc484abc4ab59631f0adc9a4fbdf236743797fe
|
| 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}
|