Getting Started
Installation
pip install capo-iot-data-plane
Usage
from capo_iot_data_plane import AsyncIoTDataPlaneClient
async def main():
async with AsyncIoTDataPlaneClient() as io_t_data_plane:
# Example: call the delete_connection operation
response = await io_t_data_plane.delete_connection()
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_data_plane import AsyncIoTDataPlaneClient
async def main():
async with AsyncIoTDataPlaneClient() as io_t_data_plane:
# Example: paginate over list_retained_messages
async for item in io_t_data_plane.iter_list_retained_messages():
print(item)
Error Handling
The SDK raises exceptions for errors returned by the API. Catch them to handle failures gracefully.
from capo_iot_data_plane import AsyncIoTDataPlaneClient
from capo_iot_data_plane.error import ForbiddenException
async def main():
async with AsyncIoTDataPlaneClient() as io_t_data_plane:
try:
await io_t_data_plane.delete_connection()
except ForbiddenException 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_data_plane import AsyncIoTDataPlaneClient
async def main():
async with AsyncIoTDataPlaneClient() as io_t_data_plane:
# Default: 3 attempts for every operation
response = await io_t_data_plane.delete_connection()
# Override per operation
response = await io_t_data_plane.delete_connection(config_overrides={"retry_max_attempts": 5})
# Disable retries for this call
response = await io_t_data_plane.delete_connection(config_overrides={"retry_max_attempts": 1})
Release files for capo-iot-data-plane 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_data_plane-0.1.0.tar.gz | 70.3 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| capo_iot_data_plane-0.1.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 193.5 kB
Release files / capo_iot_data_plane-0.1.0.tar.gz
| Download URL | capo_iot_data_plane-0.1.0.tar.gz |
|---|---|
| Size | 70.3 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
0fb2cdca8aa26916935757549de1ed6993c1ebbf76133713f74881ed64772ee6
|
|
BLAKE2b-256 checksum How to use checksums |
095d34872d839bce5633ed3ed2b0acb2ec60af91e67950e4af6ec97c59cd908b
|
| 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_data_plane-0.1.0-py3-none-any.whl
| Download URL | capo_iot_data_plane-0.1.0-py3-none-any.whl |
|---|---|
| Size | 123.2 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
c9b4c14e99261119b4d4670d73d81e8b8840465ae021d423bbcb97ab96762ef0
|
|
BLAKE2b-256 checksum How to use checksums |
e20fa5cbfcbc798ef833095a7c0d9390064ae23a2578c4cb47eafa8fa5e64acc
|
| 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}
|