Getting Started
Installation
pip install capo-iotthingsgraph
Usage
from capo_iotthingsgraph import AsyncIoTThingsGraphClient
async def main():
async with AsyncIoTThingsGraphClient() as io_t_things_graph:
# Example: call the associate_entity_to_thing operation
response = await io_t_things_graph.associate_entity_to_thing()
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_iotthingsgraph import AsyncIoTThingsGraphClient
async def main():
async with AsyncIoTThingsGraphClient() as io_t_things_graph:
# Example: paginate over get_flow_template_revisions
async for item in io_t_things_graph.iter_get_flow_template_revisions():
print(item)
Error Handling
The SDK raises exceptions for errors returned by the API. Catch them to handle failures gracefully.
from capo_iotthingsgraph import AsyncIoTThingsGraphClient
from capo_iotthingsgraph.error import InternalFailureException
async def main():
async with AsyncIoTThingsGraphClient() as io_t_things_graph:
try:
await io_t_things_graph.associate_entity_to_thing()
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_iotthingsgraph import AsyncIoTThingsGraphClient
async def main():
async with AsyncIoTThingsGraphClient() as io_t_things_graph:
# Default: 3 attempts for every operation
response = await io_t_things_graph.associate_entity_to_thing()
# Override per operation
response = await io_t_things_graph.associate_entity_to_thing(config_overrides={"retry_max_attempts": 5})
# Disable retries for this call
response = await io_t_things_graph.associate_entity_to_thing(config_overrides={"retry_max_attempts": 1})
Release files for capo-iotthingsgraph 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_iotthingsgraph-0.1.0.tar.gz | 94.9 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| capo_iotthingsgraph-0.1.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 331.6 kB
Release files / capo_iotthingsgraph-0.1.0.tar.gz
| Download URL | capo_iotthingsgraph-0.1.0.tar.gz |
|---|---|
| Size | 94.9 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
52db37bad3fc157a42af2e0f60a62f45ed08ca39df68b05cf371ce2a7b9cd9ac
|
|
BLAKE2b-256 checksum How to use checksums |
034d63ce0ab4b504f4a3844595b3d3393ea3500456036c580d6938d78a010112
|
| 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_iotthingsgraph-0.1.0-py3-none-any.whl
| Download URL | capo_iotthingsgraph-0.1.0-py3-none-any.whl |
|---|---|
| Size | 236.8 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
9c53e4371c8c4145606945637b03e732f2d202d49c84f21cea25761d509e4639
|
|
BLAKE2b-256 checksum How to use checksums |
23f1e3b02460f9bb46add2e3512137810a4d60ac13ee73bc8f17883a9fd7871e
|
| 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}
|