Skip to main content

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.4.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for capo-bcm-data-exports 0.4.0
File Size Uploaded
capo_bcm_data_exports-0.4.0.tar.gz 75.6 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for capo-bcm-data-exports 0.4.0
File Interpreter ABI Platform
capo_bcm_data_exports-0.4.0-py3-none-any.whl Python 3 none any Details

Total release size: 209.0 kB

Release files / capo_bcm_data_exports-0.4.0.tar.gz

Download URL capo_bcm_data_exports-0.4.0.tar.gz
Size 75.6 kB
Tags Source
SHA-256 checksum
How to use checksums
8c9c077933dad31f91a876aaedff55c4d08dafd66893b12ef669d3ecf3aac4cb
BLAKE2b-256 checksum
How to use checksums
5d30e14ecd3550dfef9d8c0ffc11072f429d4769da35dd7d3eb11e6583363ace
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.18 {"installer":{"name":"uv","version":"0.12.18","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.4.0-py3-none-any.whl

Download URL capo_bcm_data_exports-0.4.0-py3-none-any.whl
Size 133.4 kB
Tags Python 3
SHA-256 checksum
How to use checksums
b7b9afd95d0d213ae17801b997e24f5a6791163befd7bf1c5eb2fa48a63e1d64
BLAKE2b-256 checksum
How to use checksums
ae4f821e270bba196fe1430a11e1c6739b1f37b6eda9bbfc1bc224426e4424ae
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.18 {"installer":{"name":"uv","version":"0.12.18","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 history Release notifications | RSS feed

This release

0.4.0 This release

2 release files

0.3.0

2 release files

0.2.0

2 release files

0.1.0

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page