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.1.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_codepipeline-0.1.0.tar.gz | 172.9 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| capo_codepipeline-0.1.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 629.0 kB
Release files / capo_codepipeline-0.1.0.tar.gz
| Download URL | capo_codepipeline-0.1.0.tar.gz |
|---|---|
| Size | 172.9 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
77b9f877ad5214703383c179b11e14f44f66a4eedc45e1fb40740fca6b4713a8
|
|
BLAKE2b-256 checksum How to use checksums |
32a913c297bc433e6616751265a52009e3db3285048b5a24bce396160ed35145
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.15 {"installer":{"name":"uv","version":"0.12.15","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.1.0-py3-none-any.whl
| Download URL | capo_codepipeline-0.1.0-py3-none-any.whl |
|---|---|
| Size | 456.1 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
c4b5595b551a34840665825f331e56572f11584ddb457e583f9d81eb82cfa674
|
|
BLAKE2b-256 checksum How to use checksums |
3381e2ecf40843b40f3d54c15a34d8d2c442bbe9dcbe5ec63e53389dd9254937
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.15 {"installer":{"name":"uv","version":"0.12.15","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}
|