Getting Started
Installation
pip install capo-iotsecuretunneling
Usage
from capo_iotsecuretunneling import AsyncIoTSecureTunnelingClient
async def main():
async with AsyncIoTSecureTunnelingClient() as io_t_secure_tunneling:
# Example: call the close_tunnel operation
response = await io_t_secure_tunneling.close_tunnel()
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_iotsecuretunneling import AsyncIoTSecureTunnelingClient
async def main():
async with AsyncIoTSecureTunnelingClient() as io_t_secure_tunneling:
# Example: paginate over list_tunnels
async for item in io_t_secure_tunneling.iter_list_tunnels():
print(item)
Error Handling
The SDK raises exceptions for errors returned by the API. Catch them to handle failures gracefully.
from capo_iotsecuretunneling import AsyncIoTSecureTunnelingClient
from capo_iotsecuretunneling.error import ResourceNotFoundException
async def main():
async with AsyncIoTSecureTunnelingClient() as io_t_secure_tunneling:
try:
await io_t_secure_tunneling.close_tunnel()
except ResourceNotFoundException 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_iotsecuretunneling import AsyncIoTSecureTunnelingClient
async def main():
async with AsyncIoTSecureTunnelingClient() as io_t_secure_tunneling:
# Default: 3 attempts for every operation
response = await io_t_secure_tunneling.close_tunnel()
# Override per operation
response = await io_t_secure_tunneling.close_tunnel(config_overrides={"retry_max_attempts": 5})
# Disable retries for this call
response = await io_t_secure_tunneling.close_tunnel(config_overrides={"retry_max_attempts": 1})
Release files for capo-iotsecuretunneling 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_iotsecuretunneling-0.1.0.tar.gz | 54.5 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| capo_iotsecuretunneling-0.1.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 145.5 kB
Release files / capo_iotsecuretunneling-0.1.0.tar.gz
| Download URL | capo_iotsecuretunneling-0.1.0.tar.gz |
|---|---|
| Size | 54.5 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
32d1221af236499511086ea7bcf499a07fbddf56305fabfe106dd12ffad0750c
|
|
BLAKE2b-256 checksum How to use checksums |
89eeeb73e1a00d63ca5b9510b17a504b95edecc5d83a497a610ff047f41c4ab3
|
| 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_iotsecuretunneling-0.1.0-py3-none-any.whl
| Download URL | capo_iotsecuretunneling-0.1.0-py3-none-any.whl |
|---|---|
| Size | 91.1 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
2efb566159b7d1e31aed5a0ba5f692389969bc6b2eefec39cf9388aa37746dbb
|
|
BLAKE2b-256 checksum How to use checksums |
8d2566cb1e1fe011fe2f649917bcc58b6ba4b39d52420fd37e6a21e915daa74a
|
| 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}
|