Getting Started
Installation
pip install capo-dlm
Usage
from capo_dlm import AsyncDLMClient
async def main():
async with AsyncDLMClient() as dlm:
# Example: call the create_lifecycle_policy operation
response = await dlm.create_lifecycle_policy()
print(response["policy_id"])
Error Handling
The SDK raises exceptions for errors returned by the API. Catch them to handle failures gracefully.
from capo_dlm import AsyncDLMClient
from capo_dlm.error import InternalServerException
async def main():
async with AsyncDLMClient() as dlm:
try:
await dlm.create_lifecycle_policy()
except InternalServerException 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_dlm import AsyncDLMClient
async def main():
async with AsyncDLMClient() as dlm:
# Default: 3 attempts for every operation
response = await dlm.create_lifecycle_policy()
# Override per operation
response = await dlm.create_lifecycle_policy(config_overrides={"retry_max_attempts": 5})
# Disable retries for this call
response = await dlm.create_lifecycle_policy(config_overrides={"retry_max_attempts": 1})
Release files for capo-dlm 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_dlm-0.1.0.tar.gz | 78.4 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| capo_dlm-0.1.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 221.0 kB
Release files / capo_dlm-0.1.0.tar.gz
| Download URL | capo_dlm-0.1.0.tar.gz |
|---|---|
| Size | 78.4 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
c25976d2994a2b56a0acc8697cb2b712caa7f5f042f7fceff850b75a7aae202b
|
|
BLAKE2b-256 checksum How to use checksums |
7d38b389a35aab0aca713e8f68883e703ede505375030bc5af22f8001a595fa7
|
| 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_dlm-0.1.0-py3-none-any.whl
| Download URL | capo_dlm-0.1.0-py3-none-any.whl |
|---|---|
| Size | 142.7 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
e22835db9ae74cbbef53232fe2bd03e35aabab69b1ca5e193d66bf4065bd09cb
|
|
BLAKE2b-256 checksum How to use checksums |
ca7ef270afe3cb1deb5b14d13c3c519ad11387409a2c407b24adc5b0d6cd1ed1
|
| 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}
|