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.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_bcm_data_exports-0.1.0.tar.gz | 63.4 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| capo_bcm_data_exports-0.1.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 189.2 kB
Release files / capo_bcm_data_exports-0.1.0.tar.gz
| Download URL | capo_bcm_data_exports-0.1.0.tar.gz |
|---|---|
| Size | 63.4 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
67fd36d648f6f1c135d304491e7aaf980001aac06a61213938406e15470df99c
|
|
BLAKE2b-256 checksum How to use checksums |
c6749d39d9201f1f9a17d5c09f1d4f0816641cd2f3a439d027787d462bfe3c4c
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.15 {"installer":{"name":"uv","version":"0.12.15","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.1.0-py3-none-any.whl
| Download URL | capo_bcm_data_exports-0.1.0-py3-none-any.whl |
|---|---|
| Size | 125.9 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
c97c6d9146dcf2c5298034474943fac1305f7afd3b68bd718ff8bff43b712e1e
|
|
BLAKE2b-256 checksum How to use checksums |
ef3932f8bd85a801ef9a6939e41aba25fd0983d524247cfa4e9f482bc56cbcb2
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.15 {"installer":{"name":"uv","version":"0.12.15","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}
|