Getting Started
Installation
pip install capo-bcm-data-exports
Usage
from capo_bcm_data_exports import AsyncBCMDataExportsClient
async def main():
async with AsyncBCMDataExportsClient() as bcm_data_exports:
# Example: call the get_execution operation
response = await bcm_data_exports.get_execution()
print(response["execution_id"])
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_bcm_data_exports import AsyncBCMDataExportsClient
async def main():
async with AsyncBCMDataExportsClient() as bcm_data_exports:
# Example: paginate over list_executions
async for item in bcm_data_exports.iter_list_executions():
print(item)
Error Handling
The SDK raises exceptions for errors returned by the API. Catch them to handle failures gracefully.
from capo_bcm_data_exports import AsyncBCMDataExportsClient
from capo_bcm_data_exports.error import InternalServerException
async def main():
async with AsyncBCMDataExportsClient() as bcm_data_exports:
try:
await bcm_data_exports.get_execution()
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_bcm_data_exports import AsyncBCMDataExportsClient
async def main():
async with AsyncBCMDataExportsClient() as bcm_data_exports:
# Default: 3 attempts for every operation
response = await bcm_data_exports.get_execution()
# Override per operation
response = await bcm_data_exports.get_execution(config_overrides={"retry_max_attempts": 5})
# Disable retries for this call
response = await bcm_data_exports.get_execution(config_overrides={"retry_max_attempts": 1})
Release files for capo-bcm-data-exports 0.3.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_bcm_data_exports-0.3.0.tar.gz | 72.0 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| capo_bcm_data_exports-0.3.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 203.3 kB
Release files / capo_bcm_data_exports-0.3.0.tar.gz
| Download URL | capo_bcm_data_exports-0.3.0.tar.gz |
|---|---|
| Size | 72.0 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
480a5df6c4b4672886ec05990b149b6347b576f0931c97b5f0b4b3ccd15df478
|
|
BLAKE2b-256 checksum How to use checksums |
dc398d9347243f7755b720efe9dbb25c7107134b69ba6d1ee45f5a282de10757
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.17 {"installer":{"name":"uv","version":"0.12.17","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_bcm_data_exports-0.3.0-py3-none-any.whl
| Download URL | capo_bcm_data_exports-0.3.0-py3-none-any.whl |
|---|---|
| Size | 131.3 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
82085dc0d03d9580ac8c08fc6799a058aa9fbf7d5705635e4bcd5b2cdf605249
|
|
BLAKE2b-256 checksum How to use checksums |
3ffe9943b6cacbe56a25af8c46b31b4a28200c1788c20e0e7fb122eda97b5dfa
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.17 {"installer":{"name":"uv","version":"0.12.17","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}
|