Getting Started
Installation
pip install capo-interconnect
Usage
from capo_interconnect import AsyncInterconnectClient
async def main():
async with AsyncInterconnectClient() as interconnect:
# Example: call the accept_connection_proposal operation
response = await interconnect.accept_connection_proposal()
print(response["connection"])
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_interconnect import AsyncInterconnectClient
async def main():
async with AsyncInterconnectClient() as interconnect:
# Example: paginate over list_attach_points
async for item in interconnect.iter_list_attach_points():
print(item)
Error Handling
The SDK raises exceptions for errors returned by the API. Catch them to handle failures gracefully.
from capo_interconnect import AsyncInterconnectClient
from capo_interconnect.error import AccessDeniedException
async def main():
async with AsyncInterconnectClient() as interconnect:
try:
await interconnect.accept_connection_proposal()
except AccessDeniedException 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_interconnect import AsyncInterconnectClient
async def main():
async with AsyncInterconnectClient() as interconnect:
# Default: 3 attempts for every operation
response = await interconnect.accept_connection_proposal()
# Override per operation
response = await interconnect.accept_connection_proposal(config_overrides={"retry_max_attempts": 5})
# Disable retries for this call
response = await interconnect.accept_connection_proposal(config_overrides={"retry_max_attempts": 1})
Release files for capo-interconnect 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_interconnect-0.1.0.tar.gz | 64.8 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| capo_interconnect-0.1.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 189.8 kB
Release files / capo_interconnect-0.1.0.tar.gz
| Download URL | capo_interconnect-0.1.0.tar.gz |
|---|---|
| Size | 64.8 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
626ace8ed4e7a08011b2a6c747151add9f972b1bb9f9c268f427cf72781f10bc
|
|
BLAKE2b-256 checksum How to use checksums |
ff63fc16a684357517ddff665c105b667310f2337e107eb5fa8e0fd2dca51864
|
| 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_interconnect-0.1.0-py3-none-any.whl
| Download URL | capo_interconnect-0.1.0-py3-none-any.whl |
|---|---|
| Size | 125.1 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
5f485f6bbc3e527ba97a6d98bb23fe39467f217fce5b409b2701be999a49b613
|
|
BLAKE2b-256 checksum How to use checksums |
432d44b62213b94132ac852f88c5d51ffb7fcdb63fc688b3fc45b76939fc1daf
|
| 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}
|