Getting Started
Installation
pip install capo-emr
Usage
from capo_emr import AsyncEMRClient
async def main():
async with AsyncEMRClient() as emr:
# Example: call the add_instance_fleet operation
response = await emr.add_instance_fleet()
print(response["cluster_id"])
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_emr import AsyncEMRClient
async def main():
async with AsyncEMRClient() as emr:
# Example: paginate over list_bootstrap_actions
async for item in emr.iter_list_bootstrap_actions():
print(item)
Error Handling
The SDK raises exceptions for errors returned by the API. Catch them to handle failures gracefully.
from capo_emr import AsyncEMRClient
from capo_emr.error import InternalServerException
async def main():
async with AsyncEMRClient() as emr:
try:
await emr.add_instance_fleet()
except InternalServerException 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_emr import AsyncEMRClient
async def main():
async with AsyncEMRClient() as emr:
# Default: 3 attempts for every operation
response = await emr.add_instance_fleet()
# Override per operation
response = await emr.add_instance_fleet(config_overrides={"retry_max_attempts": 5})
# Disable retries for this call
response = await emr.add_instance_fleet(config_overrides={"retry_max_attempts": 1})
Release files for capo-emr 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_emr-0.1.0.tar.gz | 216.2 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| capo_emr-0.1.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 722.7 kB
Release files / capo_emr-0.1.0.tar.gz
| Download URL | capo_emr-0.1.0.tar.gz |
|---|---|
| Size | 216.2 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
40ccd9e51ee68f6e57fa3738290505e4c2eeb7589bdccd7a47807f9b646bbae1
|
|
BLAKE2b-256 checksum How to use checksums |
a37d88e19cb2a7df98a53db0102cdfa9dcda00b47ca1f0669249d62b2cddd6af
|
| 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_emr-0.1.0-py3-none-any.whl
| Download URL | capo_emr-0.1.0-py3-none-any.whl |
|---|---|
| Size | 506.5 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
b421e2bc396a3799786680570f73de3bee5aca198a580146c8cea419cb70782d
|
|
BLAKE2b-256 checksum How to use checksums |
30fb325f75c7bd36d634355935a0c469d514cfd9cfa54efab865f529c956149b
|
| 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}
|