Getting Started
Installation
pip install capo-iot-events-data
Usage
from capo_iot_events_data import AsyncIoTEventsDataClient
async def main():
async with AsyncIoTEventsDataClient() as io_t_events_data:
# Example: call the batch_acknowledge_alarm operation
response = await io_t_events_data.batch_acknowledge_alarm()
print(response["error_entries"])
Error Handling
The SDK raises exceptions for errors returned by the API. Catch them to handle failures gracefully.
from capo_iot_events_data import AsyncIoTEventsDataClient
from capo_iot_events_data.error import InternalFailureException
async def main():
async with AsyncIoTEventsDataClient() as io_t_events_data:
try:
await io_t_events_data.batch_acknowledge_alarm()
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_data import AsyncIoTEventsDataClient
async def main():
async with AsyncIoTEventsDataClient() as io_t_events_data:
# Default: 3 attempts for every operation
response = await io_t_events_data.batch_acknowledge_alarm()
# Override per operation
response = await io_t_events_data.batch_acknowledge_alarm(config_overrides={"retry_max_attempts": 5})
# Disable retries for this call
response = await io_t_events_data.batch_acknowledge_alarm(config_overrides={"retry_max_attempts": 1})
Release files for capo-iot-events-data 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_data-0.1.0.tar.gz | 69.3 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| capo_iot_events_data-0.1.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 215.8 kB
Release files / capo_iot_events_data-0.1.0.tar.gz
| Download URL | capo_iot_events_data-0.1.0.tar.gz |
|---|---|
| Size | 69.3 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
49e08ca41f65ea82d9ae91e6886af299eb5b2d90b5a67fe4bab0636d9e6d4d1e
|
|
BLAKE2b-256 checksum How to use checksums |
07eff7981c54bfdb3809ddb19a73693c7beee2d0b8b67869e8613bcb0867dc86
|
| 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_data-0.1.0-py3-none-any.whl
| Download URL | capo_iot_events_data-0.1.0-py3-none-any.whl |
|---|---|
| Size | 146.4 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
505e3edac4b2b2464b4e68cfb306afe6595b0bd9d13682be8c46c5359b7167b5
|
|
BLAKE2b-256 checksum How to use checksums |
61b6e5d2c76d04dc25933b4d79d53fb4d92f90fafc178decfab306de679e4ab9
|
| 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}
|