Skip to main content

Getting Started

Installation

pip install capo-ecr-public

Usage

from capo_ecr_public import AsyncECRPUBLICClient


async def main():
    async with AsyncECRPUBLICClient() as ecrpublic:
        # Example: call the batch_check_layer_availability operation
        response = await ecrpublic.batch_check_layer_availability()
        print(response["layers"])

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_ecr_public import AsyncECRPUBLICClient


async def main():
    async with AsyncECRPUBLICClient() as ecrpublic:
        # Example: paginate over describe_images
        async for item in ecrpublic.iter_describe_images():
            print(item)

Error Handling

The SDK raises exceptions for errors returned by the API. Catch them to handle failures gracefully.

from capo_ecr_public import AsyncECRPUBLICClient
from capo_ecr_public.error import InvalidParameterException


async def main():
    async with AsyncECRPUBLICClient() as ecrpublic:
        try:
            await ecrpublic.batch_check_layer_availability()
        except InvalidParameterException 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_ecr_public import AsyncECRPUBLICClient


async def main():
    async with AsyncECRPUBLICClient() as ecrpublic:
        # Default: 3 attempts for every operation
        response = await ecrpublic.batch_check_layer_availability()

        # Override per operation
        response = await ecrpublic.batch_check_layer_availability(config_overrides={"retry_max_attempts": 5})

        # Disable retries for this call
        response = await ecrpublic.batch_check_layer_availability(config_overrides={"retry_max_attempts": 1})

Release files for capo-ecr-public 0.1.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-ecr-public 0.1.0
File Size Uploaded
capo_ecr_public-0.1.0.tar.gz 91.1 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for capo-ecr-public 0.1.0
File Interpreter ABI Platform
capo_ecr_public-0.1.0-py3-none-any.whl Python 3 none any Details

Total release size: 297.1 kB

Release files / capo_ecr_public-0.1.0.tar.gz

Download URL capo_ecr_public-0.1.0.tar.gz
Size 91.1 kB
Tags Source
SHA-256 checksum
How to use checksums
ff1cb9cdb7bf4512f6df8d170775e766a5c44fa56bb9c21dbc6fe4b658629688
BLAKE2b-256 checksum
How to use checksums
7b6b37aa08dbc3f826a47d24faacff9c83970ec739250b296d4921ddd875b9b4
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_ecr_public-0.1.0-py3-none-any.whl

Download URL capo_ecr_public-0.1.0-py3-none-any.whl
Size 206.1 kB
Tags Python 3
SHA-256 checksum
How to use checksums
b8ede3124d0dbe8348ec3c864a55a959bc090c4faf08a6a479a288d91bf89a6d
BLAKE2b-256 checksum
How to use checksums
b7751cf119fb7b823cbe281b9821099bd17acd1626381fa914ddd4938ea62a90
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 history Release notifications | RSS feed

This release

0.1.0 This release

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