Getting Started
Installation
pip install capo-iot
Usage
from capo_iot import AsyncIoTClient
async def main():
async with AsyncIoTClient() as io_t:
# Example: call the accept_certificate_transfer operation
response = await io_t.accept_certificate_transfer()
print(response)
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 import AsyncIoTClient
async def main():
async with AsyncIoTClient() as io_t:
# Example: paginate over get_behavior_model_training_summaries
async for item in io_t.iter_get_behavior_model_training_summaries():
print(item)
Error Handling
The SDK raises exceptions for errors returned by the API. Catch them to handle failures gracefully.
from capo_iot import AsyncIoTClient
from capo_iot.error import InternalFailureException
async def main():
async with AsyncIoTClient() as io_t:
try:
await io_t.accept_certificate_transfer()
except InternalFailureException 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 import AsyncIoTClient
async def main():
async with AsyncIoTClient() as io_t:
# Default: 3 attempts for every operation
response = await io_t.accept_certificate_transfer()
# Override per operation
response = await io_t.accept_certificate_transfer(config_overrides={"retry_max_attempts": 5})
# Disable retries for this call
response = await io_t.accept_certificate_transfer(config_overrides={"retry_max_attempts": 1})
Release files for capo-iot 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_iot-0.1.0.tar.gz | 569.0 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| capo_iot-0.1.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 2.2 MB
Release files / capo_iot-0.1.0.tar.gz
| Download URL | capo_iot-0.1.0.tar.gz |
|---|---|
| Size | 569.0 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
1210059764b280a49842295eba34f5c4182ad81a9ab5897240c5fb28d27ca884
|
|
BLAKE2b-256 checksum How to use checksums |
77ed15ee0af0ec478b6372a92f850e67ef8c39f191dc8db6898983f2f9f977c1
|
| 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-0.1.0-py3-none-any.whl
| Download URL | capo_iot-0.1.0-py3-none-any.whl |
|---|---|
| Size | 1.6 MB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
856f05ec8dd4b8cdb010ba07d53a71f91439be19292addb85914a8c364ea3e1c
|
|
BLAKE2b-256 checksum How to use checksums |
ca4922691d43535cb820d469d45cc0aa22b2c9413102232b52fc3f63c9d43d09
|
| 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}
|