Getting Started
Installation
pip install capo-iotdeviceadvisor
Usage
from capo_iotdeviceadvisor import AsyncIotDeviceAdvisorClient
async def main():
async with AsyncIotDeviceAdvisorClient() as iot_device_advisor:
# Example: call the create_suite_definition operation
response = await iot_device_advisor.create_suite_definition()
print(response["suite_definition_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_iotdeviceadvisor import AsyncIotDeviceAdvisorClient
async def main():
async with AsyncIotDeviceAdvisorClient() as iot_device_advisor:
# Example: paginate over list_suite_definitions
async for item in iot_device_advisor.iter_list_suite_definitions():
print(item)
Error Handling
The SDK raises exceptions for errors returned by the API. Catch them to handle failures gracefully.
from capo_iotdeviceadvisor import AsyncIotDeviceAdvisorClient
from capo_iotdeviceadvisor.error import InternalServerException
async def main():
async with AsyncIotDeviceAdvisorClient() as iot_device_advisor:
try:
await iot_device_advisor.create_suite_definition()
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_iotdeviceadvisor import AsyncIotDeviceAdvisorClient
async def main():
async with AsyncIotDeviceAdvisorClient() as iot_device_advisor:
# Default: 3 attempts for every operation
response = await iot_device_advisor.create_suite_definition()
# Override per operation
response = await iot_device_advisor.create_suite_definition(config_overrides={"retry_max_attempts": 5})
# Disable retries for this call
response = await iot_device_advisor.create_suite_definition(config_overrides={"retry_max_attempts": 1})
Release files for capo-iotdeviceadvisor 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_iotdeviceadvisor-0.1.0.tar.gz | 65.9 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| capo_iotdeviceadvisor-0.1.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 191.6 kB
Release files / capo_iotdeviceadvisor-0.1.0.tar.gz
| Download URL | capo_iotdeviceadvisor-0.1.0.tar.gz |
|---|---|
| Size | 65.9 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
b404ac189dc190960766d57ac86ac064d07d4e1c67ba03d7f15221e9216069b5
|
|
BLAKE2b-256 checksum How to use checksums |
201ba9135b5389ba64626a0c1c82fbc06b7ee59c15571088add9f38f4cff9fc7
|
| 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_iotdeviceadvisor-0.1.0-py3-none-any.whl
| Download URL | capo_iotdeviceadvisor-0.1.0-py3-none-any.whl |
|---|---|
| Size | 125.7 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
669819e096ca2204452a40c5cd6f5f12ff104f509c545effac881efae8bf08a1
|
|
BLAKE2b-256 checksum How to use checksums |
52cc34bfff8aca255ec87d627295a0bb227c9fc9d213b29adfe4cd0ada247179
|
| 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}
|