Skip to main content

Getting Started

Installation

pip install capo-iot-wireless

Usage

from capo_iot_wireless import AsyncIoTWirelessClient


async def main():
    async with AsyncIoTWirelessClient() as io_t_wireless:
        # Example: call the associate_aws_account_with_partner_account operation
        response = await io_t_wireless.associate_aws_account_with_partner_account()
        print(response["sidewalk"])

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_iot_wireless import AsyncIoTWirelessClient


async def main():
    async with AsyncIoTWirelessClient() as io_t_wireless:
        # Example: paginate over list_destinations
        async for item in io_t_wireless.iter_list_destinations():
            print(item)

Error Handling

The SDK raises exceptions for errors returned by the API. Catch them to handle failures gracefully.

from capo_iot_wireless import AsyncIoTWirelessClient
from capo_iot_wireless.error import AccessDeniedException


async def main():
    async with AsyncIoTWirelessClient() as io_t_wireless:
        try:
            await io_t_wireless.associate_aws_account_with_partner_account()
        except AccessDeniedException 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_iot_wireless import AsyncIoTWirelessClient


async def main():
    async with AsyncIoTWirelessClient() as io_t_wireless:
        # Default: 3 attempts for every operation
        response = await io_t_wireless.associate_aws_account_with_partner_account()

        # Override per operation
        response = await io_t_wireless.associate_aws_account_with_partner_account(config_overrides={"retry_max_attempts": 5})

        # Disable retries for this call
        response = await io_t_wireless.associate_aws_account_with_partner_account(config_overrides={"retry_max_attempts": 1})

Release files for capo-iot-wireless 0.1.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-iot-wireless 0.1.0
File Size Uploaded
capo_iot_wireless-0.1.0.tar.gz 227.2 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for capo-iot-wireless 0.1.0
File Interpreter ABI Platform
capo_iot_wireless-0.1.0-py3-none-any.whl Python 3 none any Details

Total release size: 955.1 kB

Release files / capo_iot_wireless-0.1.0.tar.gz

Download URL capo_iot_wireless-0.1.0.tar.gz
Size 227.2 kB
Tags Source
SHA-256 checksum
How to use checksums
653ba82f49cca6cbabd47b307e0e38c1e08caae84640f41ce2acb4099e32f01b
BLAKE2b-256 checksum
How to use checksums
67c5751bc659a45253eb88fabacc47a06623fc0cc654558c3d9b8490fc08934c
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_iot_wireless-0.1.0-py3-none-any.whl

Download URL capo_iot_wireless-0.1.0-py3-none-any.whl
Size 728.0 kB
Tags Python 3
SHA-256 checksum
How to use checksums
5bcd3959e068098e07ba28f826c604ea928de27bed936d784f9dcb800c294426
BLAKE2b-256 checksum
How to use checksums
e114ccd88f394cb25e09800ecea6e838ff0a7318db6c887a90d159815413d7fa
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 history Release notifications | RSS feed

This release

0.1.0 This release

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