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.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_batch-0.1.0.tar.gz | 226.4 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| capo_batch-0.1.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 724.5 kB
Release files / capo_batch-0.1.0.tar.gz
| Download URL | capo_batch-0.1.0.tar.gz |
|---|---|
| Size | 226.4 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
1742860326fe35dd9c5cb662cbcf1dd2cb93e5881dd5d730077c196046d4cf23
|
|
BLAKE2b-256 checksum How to use checksums |
0089091005015ddda3f49d96bea6fd4a8186017ed04685688baff8ee4048ca66
|
| 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_batch-0.1.0-py3-none-any.whl
| Download URL | capo_batch-0.1.0-py3-none-any.whl |
|---|---|
| Size | 498.0 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
0c896155c444046ef58ebfd99915c62d3c6b77dcbc3af23b557bb4197ccb3512
|
|
BLAKE2b-256 checksum How to use checksums |
b614cf625a873c89ff281c74acbf1aacd5767b30b2ff403e4e2047db1b6cf00d
|
| 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}
|