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.3.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.3.0.tar.gz | 65.6 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| capo_artifact-0.3.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 169.7 kB
Release files / capo_artifact-0.3.0.tar.gz
| Download URL | capo_artifact-0.3.0.tar.gz |
|---|---|
| Size | 65.6 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
a36d52f8eff61fbfbb20c26f95d8fd7d73f33c53ce47f76e10fa44515e76a934
|
|
BLAKE2b-256 checksum How to use checksums |
36b63e2d95cea52b7f212d1f5db5ce04860e8024f966c64bef709eb6a0882bb8
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.17 {"installer":{"name":"uv","version":"0.12.17","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.3.0-py3-none-any.whl
| Download URL | capo_artifact-0.3.0-py3-none-any.whl |
|---|---|
| Size | 104.1 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
8eee48394939a5e707865d1b94d09ea5ad8d604b9a99115c79eea5625316a269
|
|
BLAKE2b-256 checksum How to use checksums |
41ed5ce1c2ca13251cec6fb3f49e9c10ba9f335c5dce1a2e5a8f8581cc08c568
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.17 {"installer":{"name":"uv","version":"0.12.17","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}
|