Getting Started
Installation
pip install capo-health
Usage
from capo_health import AsyncHealthClient
async def main():
async with AsyncHealthClient() as health:
# Example: call the describe_affected_accounts_for_organization operation
response = await health.describe_affected_accounts_for_organization()
print(response["affected_accounts"])
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_health import AsyncHealthClient
async def main():
async with AsyncHealthClient() as health:
# Example: paginate over describe_affected_accounts_for_organization
async for item in health.iter_describe_affected_accounts_for_organization():
print(item)
Error Handling
The SDK raises exceptions for errors returned by the API. Catch them to handle failures gracefully.
from capo_health import AsyncHealthClient
from capo_health.error import InvalidPaginationToken
async def main():
async with AsyncHealthClient() as health:
try:
await health.describe_affected_accounts_for_organization()
except InvalidPaginationToken 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_health import AsyncHealthClient
async def main():
async with AsyncHealthClient() as health:
# Default: 3 attempts for every operation
response = await health.describe_affected_accounts_for_organization()
# Override per operation
response = await health.describe_affected_accounts_for_organization(config_overrides={"retry_max_attempts": 5})
# Disable retries for this call
response = await health.describe_affected_accounts_for_organization(config_overrides={"retry_max_attempts": 1})
Release files for capo-health 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_health-0.1.0.tar.gz | 83.3 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| capo_health-0.1.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 250.2 kB
Release files / capo_health-0.1.0.tar.gz
| Download URL | capo_health-0.1.0.tar.gz |
|---|---|
| Size | 83.3 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
ede9005405d1572344ab5126aff1e044fffecf5f005bb6cbf72fa56b6c3457ce
|
|
BLAKE2b-256 checksum How to use checksums |
4e7c09f257f18cce33eec25b9dd41f4af195a7305d8af5d65f6234790c368356
|
| 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_health-0.1.0-py3-none-any.whl
| Download URL | capo_health-0.1.0-py3-none-any.whl |
|---|---|
| Size | 167.0 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
e567d01fe365dd7eb9f775ac2cdf314608a0e9d785f702607ee429f675d22228
|
|
BLAKE2b-256 checksum How to use checksums |
015623ee9ccadd972409065161a3172d526da64e6ce0bee3f3e5a55974213f2b
|
| 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}
|