Getting Started
Installation
pip install capo-iot-events
Usage
from capo_iot_events import AsyncIoTEventsClient
async def main():
async with AsyncIoTEventsClient() as io_t_events:
# Example: call the create_alarm_model operation
response = await io_t_events.create_alarm_model()
print(response["creation_time"])
Error Handling
The SDK raises exceptions for errors returned by the API. Catch them to handle failures gracefully.
from capo_iot_events import AsyncIoTEventsClient
from capo_iot_events.error import InternalFailureException
async def main():
async with AsyncIoTEventsClient() as io_t_events:
try:
await io_t_events.create_alarm_model()
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_events import AsyncIoTEventsClient
async def main():
async with AsyncIoTEventsClient() as io_t_events:
# Default: 3 attempts for every operation
response = await io_t_events.create_alarm_model()
# Override per operation
response = await io_t_events.create_alarm_model(config_overrides={"retry_max_attempts": 5})
# Disable retries for this call
response = await io_t_events.create_alarm_model(config_overrides={"retry_max_attempts": 1})
Release files for capo-iot-events 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_events-0.1.0.tar.gz | 101.7 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| capo_iot_events-0.1.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 345.6 kB
Release files / capo_iot_events-0.1.0.tar.gz
| Download URL | capo_iot_events-0.1.0.tar.gz |
|---|---|
| Size | 101.7 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
24ec6ace30e6a7e2f7a648c7d91d8238a1cd08e4a57b54c15e2b1f7c98416217
|
|
BLAKE2b-256 checksum How to use checksums |
da8acf3f0493df345abf72b3203f1611461ee787449a4ecef5363928fd1a595f
|
| 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_events-0.1.0-py3-none-any.whl
| Download URL | capo_iot_events-0.1.0-py3-none-any.whl |
|---|---|
| Size | 243.9 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
61924610af2eed8deb11083c5535942624ab7ccf1f108379d0102652aeb2245b
|
|
BLAKE2b-256 checksum How to use checksums |
159256800cd585ef1071a31145828f8ff827f5aaa3428576b7617578c2f780e5
|
| 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}
|