Skip to main content

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.4.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for capo-artifact 0.4.0
File Size Uploaded
capo_artifact-0.4.0.tar.gz 69.2 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for capo-artifact 0.4.0
File Interpreter ABI Platform
capo_artifact-0.4.0-py3-none-any.whl Python 3 none any Details

Total release size: 175.4 kB

Release files / capo_artifact-0.4.0.tar.gz

Download URL capo_artifact-0.4.0.tar.gz
Size 69.2 kB
Tags Source
SHA-256 checksum
How to use checksums
93a8469ec8f9b457ca62a7de4b76a6f2d0460f288b4dcc618b24a24b4dd84af0
BLAKE2b-256 checksum
How to use checksums
fe96101554d0a3ac25f8ea046e257a651163add97be364bf0706cdbfe4e3e0b4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.18 {"installer":{"name":"uv","version":"0.12.18","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.4.0-py3-none-any.whl

Download URL capo_artifact-0.4.0-py3-none-any.whl
Size 106.2 kB
Tags Python 3
SHA-256 checksum
How to use checksums
431f6c5842601be05871a7935256230a4f9a7aeaa11178a22d05909bfff42229
BLAKE2b-256 checksum
How to use checksums
6a97489469bc763f52a3d54dd45d78876d13223af82fe3ac45565a8afe81d9ed
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.18 {"installer":{"name":"uv","version":"0.12.18","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 history Release notifications | RSS feed

This release

0.4.0 This release

2 release files

0.3.0

2 release files

0.2.0

2 release files

0.1.0

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page