Getting Started
Installation
pip install capo-drs
Usage
from capo_drs import AsyncdrsClient
async def main():
async with AsyncdrsClient() as drs:
# Example: call the create_extended_source_server operation
response = await drs.create_extended_source_server()
print(response["source_server"])
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_drs import AsyncdrsClient
async def main():
async with AsyncdrsClient() as drs:
# Example: paginate over list_extensible_source_servers
async for item in drs.iter_list_extensible_source_servers():
print(item)
Error Handling
The SDK raises exceptions for errors returned by the API. Catch them to handle failures gracefully.
from capo_drs import AsyncdrsClient
from capo_drs.error import AccessDeniedException
async def main():
async with AsyncdrsClient() as drs:
try:
await drs.create_extended_source_server()
except AccessDeniedException 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_drs import AsyncdrsClient
async def main():
async with AsyncdrsClient() as drs:
# Default: 3 attempts for every operation
response = await drs.create_extended_source_server()
# Override per operation
response = await drs.create_extended_source_server(config_overrides={"retry_max_attempts": 5})
# Disable retries for this call
response = await drs.create_extended_source_server(config_overrides={"retry_max_attempts": 1})
Release files for capo-drs 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_drs-0.1.0.tar.gz | 134.3 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| capo_drs-0.1.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 490.4 kB
Release files / capo_drs-0.1.0.tar.gz
| Download URL | capo_drs-0.1.0.tar.gz |
|---|---|
| Size | 134.3 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
2bf7bc18f28ad7c5e57351ab5e361b0acd5f72db602e0fd30556cfa902bf6179
|
|
BLAKE2b-256 checksum How to use checksums |
abb6f57c858ae219c25fb06ce2b9be5aa41969397f8a9593fcec75b400917904
|
| 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_drs-0.1.0-py3-none-any.whl
| Download URL | capo_drs-0.1.0-py3-none-any.whl |
|---|---|
| Size | 356.0 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
7a5b3d3546ba1f65eab88fd88f8be2d01ea1a6720f5f9aa5345ac37e22f9c9c8
|
|
BLAKE2b-256 checksum How to use checksums |
9d205e7fb22b52d6c9840d11661f409c90d9250c23dc439ff082a3b0fc7134b1
|
| 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}
|