Getting Started
Installation
pip install capo-cost-explorer
Usage
from capo_cost_explorer import AsyncCostExplorerClient
async def main():
async with AsyncCostExplorerClient() as cost_explorer:
# Example: call the create_anomaly_monitor operation
response = await cost_explorer.create_anomaly_monitor()
print(response["monitor_arn"])
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_cost_explorer import AsyncCostExplorerClient
async def main():
async with AsyncCostExplorerClient() as cost_explorer:
# Example: paginate over get_anomalies
async for item in cost_explorer.iter_get_anomalies():
print(item)
Error Handling
The SDK raises exceptions for errors returned by the API. Catch them to handle failures gracefully.
from capo_cost_explorer import AsyncCostExplorerClient
from capo_cost_explorer.error import LimitExceededException
async def main():
async with AsyncCostExplorerClient() as cost_explorer:
try:
await cost_explorer.create_anomaly_monitor()
except LimitExceededException 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_cost_explorer import AsyncCostExplorerClient
async def main():
async with AsyncCostExplorerClient() as cost_explorer:
# Default: 3 attempts for every operation
response = await cost_explorer.create_anomaly_monitor()
# Override per operation
response = await cost_explorer.create_anomaly_monitor(config_overrides={"retry_max_attempts": 5})
# Disable retries for this call
response = await cost_explorer.create_anomaly_monitor(config_overrides={"retry_max_attempts": 1})
Release files for capo-cost-explorer 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_cost_explorer-0.1.0.tar.gz | 206.3 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| capo_cost_explorer-0.1.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 702.6 kB
Release files / capo_cost_explorer-0.1.0.tar.gz
| Download URL | capo_cost_explorer-0.1.0.tar.gz |
|---|---|
| Size | 206.3 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
52ee31d0b29bc8e099c8da8efe0b3319ad368c1ce83da4cd3a16348f44c3585b
|
|
BLAKE2b-256 checksum How to use checksums |
30ac96ad122ea5007d7fedf69500f23a82371cb85b729e3e2e53f8046556088e
|
| 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_cost_explorer-0.1.0-py3-none-any.whl
| Download URL | capo_cost_explorer-0.1.0-py3-none-any.whl |
|---|---|
| Size | 496.2 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
c794722d7566348250e65f1271c109159405dc5c7e973a4522ee949b984e28dc
|
|
BLAKE2b-256 checksum How to use checksums |
f790cb0e6466010b56fbc40c9a0c46d76b6f56d5878d717635ebe5b61b9db8e6
|
| 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}
|