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.3.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.3.0.tar.gz | 234.3 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| capo_batch-0.3.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 737.6 kB
Release files / capo_batch-0.3.0.tar.gz
| Download URL | capo_batch-0.3.0.tar.gz |
|---|---|
| Size | 234.3 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
f4a26fbc03f260afc4d660b2fa1006f01df688ceff569d3da2185ccc3240c77b
|
|
BLAKE2b-256 checksum How to use checksums |
d17b62806eaa2f820b278093c9964f756bba63b3a11913ce14ecd0ab38cbc22c
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.18 {"installer":{"name":"uv","version":"0.12.18","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.3.0-py3-none-any.whl
| Download URL | capo_batch-0.3.0-py3-none-any.whl |
|---|---|
| Size | 503.3 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
d2e4ccca26e1cb802c5051cdd554f81ab7978d635ecc4a0f2f8fbb6987830e4d
|
|
BLAKE2b-256 checksum How to use checksums |
3b225efbcdaad9b0eea3ed66da024097089d4622766d46b3a555ac86879ffe6f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.18 {"installer":{"name":"uv","version":"0.12.18","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}
|