Getting Started
Installation
pip install capo-controlcatalog
Usage
from capo_controlcatalog import AsyncControlCatalogClient
async def main():
async with AsyncControlCatalogClient() as control_catalog:
# Example: call the list_control_mappings operation
response = await control_catalog.list_control_mappings()
print(response["control_mappings"])
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_controlcatalog import AsyncControlCatalogClient
async def main():
async with AsyncControlCatalogClient() as control_catalog:
# Example: paginate over list_control_mappings
async for item in control_catalog.iter_list_control_mappings():
print(item)
Error Handling
The SDK raises exceptions for errors returned by the API. Catch them to handle failures gracefully.
from capo_controlcatalog import AsyncControlCatalogClient
from capo_controlcatalog.error import AccessDeniedException
async def main():
async with AsyncControlCatalogClient() as control_catalog:
try:
await control_catalog.list_control_mappings()
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_controlcatalog import AsyncControlCatalogClient
async def main():
async with AsyncControlCatalogClient() as control_catalog:
# Default: 3 attempts for every operation
response = await control_catalog.list_control_mappings()
# Override per operation
response = await control_catalog.list_control_mappings(config_overrides={"retry_max_attempts": 5})
# Disable retries for this call
response = await control_catalog.list_control_mappings(config_overrides={"retry_max_attempts": 1})
Release files for capo-controlcatalog 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_controlcatalog-0.1.0.tar.gz | 63.2 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| capo_controlcatalog-0.1.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 181.2 kB
Release files / capo_controlcatalog-0.1.0.tar.gz
| Download URL | capo_controlcatalog-0.1.0.tar.gz |
|---|---|
| Size | 63.2 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
2923a5bfe8f27b45655bc286f3b516381cc99d27a5ad565419cd47a90f2f4fde
|
|
BLAKE2b-256 checksum How to use checksums |
f318ad5de2afc2ed5fbe7841a8bce198980872b4e7c7afbcd804894386420487
|
| 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_controlcatalog-0.1.0-py3-none-any.whl
| Download URL | capo_controlcatalog-0.1.0-py3-none-any.whl |
|---|---|
| Size | 118.0 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
4986fbc9cd7aad03997354586fc58bcbcec84c3c781ecf4c2a5b2ff6840c6267
|
|
BLAKE2b-256 checksum How to use checksums |
c4ec9e5fc02588d199d848d5a7e6a7be2fc35498659709b980bf7cfbf8f1f1fd
|
| 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}
|