Getting Started
Installation
pip install capo-iotsitewise
Usage
from capo_iotsitewise import AsyncIoTSiteWiseClient
async def main():
async with AsyncIoTSiteWiseClient() as io_t_site_wise:
# Example: call the associate_assets operation
response = await io_t_site_wise.associate_assets()
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_iotsitewise import AsyncIoTSiteWiseClient
async def main():
async with AsyncIoTSiteWiseClient() as io_t_site_wise:
# Example: paginate over batch_get_asset_property_aggregates
async for item in io_t_site_wise.iter_batch_get_asset_property_aggregates():
print(item)
Waiters
Waiters poll an operation until a resource reaches a desired state. If the operation supports waiters it will have a wait_until_ prefixed method.
from capo_iotsitewise import AsyncIoTSiteWiseClient
async def main():
async with AsyncIoTSiteWiseClient() as io_t_site_wise:
# Example: wait for asset_not_exists
await io_t_site_wise.wait_until_asset_not_exists(max_wait_time=300)
Error Handling
The SDK raises exceptions for errors returned by the API. Catch them to handle failures gracefully.
from capo_iotsitewise import AsyncIoTSiteWiseClient
from capo_iotsitewise.error import ConflictingOperationException
async def main():
async with AsyncIoTSiteWiseClient() as io_t_site_wise:
try:
await io_t_site_wise.associate_assets()
except ConflictingOperationException 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_iotsitewise import AsyncIoTSiteWiseClient
async def main():
async with AsyncIoTSiteWiseClient() as io_t_site_wise:
# Default: 3 attempts for every operation
response = await io_t_site_wise.associate_assets()
# Override per operation
response = await io_t_site_wise.associate_assets(config_overrides={"retry_max_attempts": 5})
# Disable retries for this call
response = await io_t_site_wise.associate_assets(config_overrides={"retry_max_attempts": 1})
Release files for capo-iotsitewise 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_iotsitewise-0.1.0.tar.gz | 283.4 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| capo_iotsitewise-0.1.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 1.1 MB
Release files / capo_iotsitewise-0.1.0.tar.gz
| Download URL | capo_iotsitewise-0.1.0.tar.gz |
|---|---|
| Size | 283.4 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
38a3b58ccef6394994ff4aaf0af3cfcfd006a60eff90811dfe80429500a72e91
|
|
BLAKE2b-256 checksum How to use checksums |
2ec26330827a648c9ef5c270660e423e8e09335c1265eb2c7ddab65a840c55ee
|
| 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_iotsitewise-0.1.0-py3-none-any.whl
| Download URL | capo_iotsitewise-0.1.0-py3-none-any.whl |
|---|---|
| Size | 784.8 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
d3ebbac87af84560b189cda9681dd55baee7d6dce4714e8ae64b7faf573b0744
|
|
BLAKE2b-256 checksum How to use checksums |
794885c82f350e7a86701e4fadd60d9234e35e100dcc7950200410ca22d01df1
|
| 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}
|