Getting Started
Installation
pip install capo-batch
Usage
from capo_batch import AsyncBatchClient
async def main():
async with AsyncBatchClient() as batch:
# Example: call the cancel_job operation
response = await batch.cancel_job()
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_batch import AsyncBatchClient
async def main():
async with AsyncBatchClient() as batch:
# Example: paginate over describe_compute_environments
async for item in batch.iter_describe_compute_environments():
print(item)
Error Handling
The SDK raises exceptions for errors returned by the API. Catch them to handle failures gracefully.
from capo_batch import AsyncBatchClient
from capo_batch.error import ClientException
async def main():
async with AsyncBatchClient() as batch:
try:
await batch.cancel_job()
except ClientException 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_batch import AsyncBatchClient
async def main():
async with AsyncBatchClient() as batch:
# Default: 3 attempts for every operation
response = await batch.cancel_job()
# Override per operation
response = await batch.cancel_job(config_overrides={"retry_max_attempts": 5})
# Disable retries for this call
response = await batch.cancel_job(config_overrides={"retry_max_attempts": 1})
Release files for capo-batch 0.2.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_batch-0.2.0.tar.gz | 230.5 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| capo_batch-0.2.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 731.7 kB
Release files / capo_batch-0.2.0.tar.gz
| Download URL | capo_batch-0.2.0.tar.gz |
|---|---|
| Size | 230.5 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
2f0ff452d65d572229efd005b6aa1caada399af4f061fda7a11089dfd7008e8a
|
|
BLAKE2b-256 checksum How to use checksums |
1749c41e1e02ff00d35e2f64d36ebebb633d3e1b5ead1cd9f5b10e45b0acd87e
|
| 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_batch-0.2.0-py3-none-any.whl
| Download URL | capo_batch-0.2.0-py3-none-any.whl |
|---|---|
| Size | 501.2 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
d5150a6f3aa1cb9e11a2d30dc6329df032b71376e39810c5ae931a942a4e07e4
|
|
BLAKE2b-256 checksum How to use checksums |
ea95df1bdb4847aee5b09d73afe58060d8e6ca543661f7ce9010c82d34f2299e
|
| 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}
|