Getting Started
Installation
pip install capo-ivs
Usage
from capo_ivs import AsyncivsClient
async def main():
async with AsyncivsClient() as ivs:
# Example: call the batch_get_channel operation
response = await ivs.batch_get_channel()
print(response["access_control_allow_origin"])
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_ivs import AsyncivsClient
async def main():
async with AsyncivsClient() as ivs:
# Example: paginate over list_ad_configurations
async for item in ivs.iter_list_ad_configurations():
print(item)
Error Handling
The SDK raises exceptions for errors returned by the API. Catch them to handle failures gracefully.
from capo_ivs import AsyncivsClient
from capo_ivs.error import AccessDeniedException
async def main():
async with AsyncivsClient() as ivs:
try:
await ivs.batch_get_channel()
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_ivs import AsyncivsClient
async def main():
async with AsyncivsClient() as ivs:
# Default: 3 attempts for every operation
response = await ivs.batch_get_channel()
# Override per operation
response = await ivs.batch_get_channel(config_overrides={"retry_max_attempts": 5})
# Disable retries for this call
response = await ivs.batch_get_channel(config_overrides={"retry_max_attempts": 1})
Release files for capo-ivs 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_ivs-0.1.0.tar.gz | 117.3 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| capo_ivs-0.1.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 406.0 kB
Release files / capo_ivs-0.1.0.tar.gz
| Download URL | capo_ivs-0.1.0.tar.gz |
|---|---|
| Size | 117.3 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
742a7d6d8cbe9abf9a3c490fe82819f07cbdcf076b6ae16d954689b0ef5add58
|
|
BLAKE2b-256 checksum How to use checksums |
910f62549d9859f8589c9a6bc1cb5800cd2857bf1701df2a4e02db52b06b7715
|
| 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_ivs-0.1.0-py3-none-any.whl
| Download URL | capo_ivs-0.1.0-py3-none-any.whl |
|---|---|
| Size | 288.6 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
4de8995233b2f429f68425014be740d883df63a83399fd9d2d03456acc14a8ef
|
|
BLAKE2b-256 checksum How to use checksums |
8b1d7ebf7e83db8c3242b16bf29cc51d2af437880c8461c179672dfab030cc60
|
| 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}
|