Getting Started
Installation
pip install capo-data-pipeline
Usage
from capo_data_pipeline import AsyncDataPipelineClient
async def main():
async with AsyncDataPipelineClient() as data_pipeline:
# Example: call the activate_pipeline operation
response = await data_pipeline.activate_pipeline()
print(response)
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_data_pipeline import AsyncDataPipelineClient
async def main():
async with AsyncDataPipelineClient() as data_pipeline:
# Example: paginate over describe_objects
async for item in data_pipeline.iter_describe_objects():
print(item)
Error Handling
The SDK raises exceptions for errors returned by the API. Catch them to handle failures gracefully.
from capo_data_pipeline import AsyncDataPipelineClient
from capo_data_pipeline.error import InternalServiceError
async def main():
async with AsyncDataPipelineClient() as data_pipeline:
try:
await data_pipeline.activate_pipeline()
except InternalServiceError 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_data_pipeline import AsyncDataPipelineClient
async def main():
async with AsyncDataPipelineClient() as data_pipeline:
# Default: 3 attempts for every operation
response = await data_pipeline.activate_pipeline()
# Override per operation
response = await data_pipeline.activate_pipeline(config_overrides={"retry_max_attempts": 5})
# Disable retries for this call
response = await data_pipeline.activate_pipeline(config_overrides={"retry_max_attempts": 1})
Release files for capo-data-pipeline 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_data_pipeline-0.1.0.tar.gz | 88.8 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| capo_data_pipeline-0.1.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 252.6 kB
Release files / capo_data_pipeline-0.1.0.tar.gz
| Download URL | capo_data_pipeline-0.1.0.tar.gz |
|---|---|
| Size | 88.8 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
dbb247b053c1b0a37e63b69d8fb9255070e234b4dd1e435350eb84a338cdaa87
|
|
BLAKE2b-256 checksum How to use checksums |
649482a73b6fc80a153c238e1721be9c1907f375d080718664806dc69bf264ae
|
| 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_data_pipeline-0.1.0-py3-none-any.whl
| Download URL | capo_data_pipeline-0.1.0-py3-none-any.whl |
|---|---|
| Size | 163.8 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
8f3b876591159b03957e48ae688e65a603a8e5e08a976bf6d081ced2be516923
|
|
BLAKE2b-256 checksum How to use checksums |
8c54540202df50265c52c8aef50f3ad472c66ca3179299604c443f267e005dd0
|
| 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}
|