Getting Started
Installation
pip install capo-artifact
Usage
from capo_artifact import AsyncArtifactClient
async def main():
async with AsyncArtifactClient() as artifact:
# Example: call the get_account_settings operation
response = await artifact.get_account_settings()
print(response["account_settings"])
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_artifact import AsyncArtifactClient
async def main():
async with AsyncArtifactClient() as artifact:
# Example: paginate over list_customer_agreements
async for item in artifact.iter_list_customer_agreements():
print(item)
Error Handling
The SDK raises exceptions for errors returned by the API. Catch them to handle failures gracefully.
from capo_artifact import AsyncArtifactClient
from capo_artifact.error import AccessDeniedException
async def main():
async with AsyncArtifactClient() as artifact:
try:
await artifact.get_account_settings()
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_artifact import AsyncArtifactClient
async def main():
async with AsyncArtifactClient() as artifact:
# Default: 3 attempts for every operation
response = await artifact.get_account_settings()
# Override per operation
response = await artifact.get_account_settings(config_overrides={"retry_max_attempts": 5})
# Disable retries for this call
response = await artifact.get_account_settings(config_overrides={"retry_max_attempts": 1})
Release files for capo-artifact 0.2.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_artifact-0.2.0.tar.gz | 61.5 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| capo_artifact-0.2.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 162.4 kB
Release files / capo_artifact-0.2.0.tar.gz
| Download URL | capo_artifact-0.2.0.tar.gz |
|---|---|
| Size | 61.5 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
a1724b10980fd38eefedc159937a83183274f72e9a9eb4285fbc6ed8b3dc8e5b
|
|
BLAKE2b-256 checksum How to use checksums |
161e4ea085cd938ba3da40dd2b4d70387743d1f5bdc7a0df261b211d6ff3537e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.16 {"installer":{"name":"uv","version":"0.12.16","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_artifact-0.2.0-py3-none-any.whl
| Download URL | capo_artifact-0.2.0-py3-none-any.whl |
|---|---|
| Size | 100.9 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
1d57068d91e126eae46e5e3082357f220f111294fad82045969253053ad2573d
|
|
BLAKE2b-256 checksum How to use checksums |
cf890d7b686a709c67c03259ac98037cc1069b2ab578fae7a6defc1f71ed40e8
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.16 {"installer":{"name":"uv","version":"0.12.16","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}
|