Skip to main content

Getting Started

Installation

pip install capo-codepipeline

Usage

from capo_codepipeline import AsyncCodePipelineClient


async def main():
    async with AsyncCodePipelineClient() as code_pipeline:
        # Example: call the acknowledge_job operation
        response = await code_pipeline.acknowledge_job()
        print(response["status"])

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_codepipeline import AsyncCodePipelineClient


async def main():
    async with AsyncCodePipelineClient() as code_pipeline:
        # Example: paginate over list_action_executions
        async for item in code_pipeline.iter_list_action_executions():
            print(item)

Error Handling

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

from capo_codepipeline import AsyncCodePipelineClient
from capo_codepipeline.error import InvalidNonceException


async def main():
    async with AsyncCodePipelineClient() as code_pipeline:
        try:
            await code_pipeline.acknowledge_job()
        except InvalidNonceException 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_codepipeline import AsyncCodePipelineClient


async def main():
    async with AsyncCodePipelineClient() as code_pipeline:
        # Default: 3 attempts for every operation
        response = await code_pipeline.acknowledge_job()

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

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

Release files for capo-codepipeline 0.2.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-codepipeline 0.2.0
File Size Uploaded
capo_codepipeline-0.2.0.tar.gz 177.0 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for capo-codepipeline 0.2.0
File Interpreter ABI Platform
capo_codepipeline-0.2.0-py3-none-any.whl Python 3 none any Details

Total release size: 636.3 kB

Release files / capo_codepipeline-0.2.0.tar.gz

Download URL capo_codepipeline-0.2.0.tar.gz
Size 177.0 kB
Tags Source
SHA-256 checksum
How to use checksums
d8da56e78588ea0c225f319a3940266cc3f2eb907394a6b366045180f1af37b0
BLAKE2b-256 checksum
How to use checksums
b50d24d485337f3f84ba363e22560b430fd8777b09c6524e39b3e811c0b7dd04
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_codepipeline-0.2.0-py3-none-any.whl

Download URL capo_codepipeline-0.2.0-py3-none-any.whl
Size 459.3 kB
Tags Python 3
SHA-256 checksum
How to use checksums
ecd76ab32a3b8812c5ff4e4502d90c873cb2f4b59b0748adc658e5a7ec685109
BLAKE2b-256 checksum
How to use checksums
729bb1b325c013f9fdf335796fc0d99a4fa0458e762f1cd2fc922dd4a410d62f
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 history Release notifications | RSS feed

0.3.0

2 release files

This release

0.2.0 This release

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