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.2.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.2.0
File Size Uploaded
capo_bcm_data_exports-0.2.0.tar.gz 67.8 kB Details

Built distribution (wheel)

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

Total release size: 196.0 kB

Release files / capo_bcm_data_exports-0.2.0.tar.gz

Download URL capo_bcm_data_exports-0.2.0.tar.gz
Size 67.8 kB
Tags Source
SHA-256 checksum
How to use checksums
0164da10129be0d1fefa876fd99cb5645d2764e1d8d085f7bf12e2b3391cd019
BLAKE2b-256 checksum
How to use checksums
4bf0002150d4332c9a6c937258fe63f73bf110e5bb2573c3e24606d8751bcc65
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.16 {"installer":{"name":"uv","version":"0.12.16","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.2.0-py3-none-any.whl

Download URL capo_bcm_data_exports-0.2.0-py3-none-any.whl
Size 128.2 kB
Tags Python 3
SHA-256 checksum
How to use checksums
8f3c4580add541772c411c3f72130bd376b5f955db40a3c8177139cb7c87ce7a
BLAKE2b-256 checksum
How to use checksums
57b08d7f21ad2b8728b25ac2a84204c024f42190c3c44042d46244b00e28d0df
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.16 {"installer":{"name":"uv","version":"0.12.16","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

0.4.0

2 release files

0.3.0

2 release files

This release

0.2.0 This release

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