Getting Started
Installation
pip install capo-fis
Usage
from capo_fis import AsyncfisClient
async def main():
async with AsyncfisClient() as fis:
# Example: call the create_experiment_template operation
response = await fis.create_experiment_template()
print(response["experiment_template"])
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_fis import AsyncfisClient
async def main():
async with AsyncfisClient() as fis:
# Example: paginate over list_actions
async for item in fis.iter_list_actions():
print(item)
Error Handling
The SDK raises exceptions for errors returned by the API. Catch them to handle failures gracefully.
from capo_fis import AsyncfisClient
from capo_fis.error import ConflictException
async def main():
async with AsyncfisClient() as fis:
try:
await fis.create_experiment_template()
except ConflictException 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_fis import AsyncfisClient
async def main():
async with AsyncfisClient() as fis:
# Default: 3 attempts for every operation
response = await fis.create_experiment_template()
# Override per operation
response = await fis.create_experiment_template(config_overrides={"retry_max_attempts": 5})
# Disable retries for this call
response = await fis.create_experiment_template(config_overrides={"retry_max_attempts": 1})
Release files for capo-fis 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_fis-0.1.0.tar.gz | 99.4 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| capo_fis-0.1.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 356.4 kB
Release files / capo_fis-0.1.0.tar.gz
| Download URL | capo_fis-0.1.0.tar.gz |
|---|---|
| Size | 99.4 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
6677d47e383920b358757d67c97033fffae40b670b397d72c969e6d25908d640
|
|
BLAKE2b-256 checksum How to use checksums |
72cebef2ae0dbc0d419d2a18a8c4933a372d9ef3783f4e8d59f886866be267a6
|
| 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_fis-0.1.0-py3-none-any.whl
| Download URL | capo_fis-0.1.0-py3-none-any.whl |
|---|---|
| Size | 257.0 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
cae32c9d954f1c37238d3efd3accc7a8c74cc4beb71856069a0cad500892d45a
|
|
BLAKE2b-256 checksum How to use checksums |
04cffbbd5b3b5d48349873ad696fcd3ae390a07a51df9737bc44b344c040261c
|
| 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}
|