Skip to main content

Getting Started

Installation

pip install capo-iotfleetwise

Usage

from capo_iotfleetwise import AsyncIoTFleetWiseClient


async def main():
    async with AsyncIoTFleetWiseClient() as io_t_fleet_wise:
        # Example: call the batch_create_vehicle operation
        response = await io_t_fleet_wise.batch_create_vehicle()
        print(response["vehicles"])

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_iotfleetwise import AsyncIoTFleetWiseClient


async def main():
    async with AsyncIoTFleetWiseClient() as io_t_fleet_wise:
        # Example: paginate over get_vehicle_status
        async for item in io_t_fleet_wise.iter_get_vehicle_status():
            print(item)

Error Handling

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

from capo_iotfleetwise import AsyncIoTFleetWiseClient
from capo_iotfleetwise.error import InternalServerException


async def main():
    async with AsyncIoTFleetWiseClient() as io_t_fleet_wise:
        try:
            await io_t_fleet_wise.batch_create_vehicle()
        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_iotfleetwise import AsyncIoTFleetWiseClient


async def main():
    async with AsyncIoTFleetWiseClient() as io_t_fleet_wise:
        # Default: 3 attempts for every operation
        response = await io_t_fleet_wise.batch_create_vehicle()

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

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

Release files for capo-iotfleetwise 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-iotfleetwise 0.1.0
File Size Uploaded
capo_iotfleetwise-0.1.0.tar.gz 158.1 kB Details

Built distribution (wheel)

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

Total release size: 599.7 kB

Release files / capo_iotfleetwise-0.1.0.tar.gz

Download URL capo_iotfleetwise-0.1.0.tar.gz
Size 158.1 kB
Tags Source
SHA-256 checksum
How to use checksums
21f9ab8b7f1360eba7355862520ead96db5d81f27377f7085d7e8254dd8cb1b4
BLAKE2b-256 checksum
How to use checksums
c8e74d9aa8cadb1f9f631b6358ee1efe6708fd91b7ebe8a81312702b957123c4
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_iotfleetwise-0.1.0-py3-none-any.whl

Download URL capo_iotfleetwise-0.1.0-py3-none-any.whl
Size 441.6 kB
Tags Python 3
SHA-256 checksum
How to use checksums
73dd561e82589d48548268acb4eb5ccc2ba5cd9202a3b4ba6a5d3f9cfe3a361b
BLAKE2b-256 checksum
How to use checksums
5e32899bb02f6649bf696d6bceae7a0559b55b74d8c06e0812ed3099c8ac96de
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