Getting Started
Installation
pip install capo-emr-containers
Usage
from capo_emr_containers import AsyncEMRcontainersClient
async def main():
async with AsyncEMRcontainersClient() as em_rcontainers:
# Example: call the cancel_job_run operation
response = await em_rcontainers.cancel_job_run()
print(response["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_containers import AsyncEMRcontainersClient
async def main():
async with AsyncEMRcontainersClient() as em_rcontainers:
# Example: paginate over list_job_runs
async for item in em_rcontainers.iter_list_job_runs():
print(item)
Error Handling
The SDK raises exceptions for errors returned by the API. Catch them to handle failures gracefully.
from capo_emr_containers import AsyncEMRcontainersClient
from capo_emr_containers.error import InternalServerException
async def main():
async with AsyncEMRcontainersClient() as em_rcontainers:
try:
await em_rcontainers.cancel_job_run()
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_containers import AsyncEMRcontainersClient
async def main():
async with AsyncEMRcontainersClient() as em_rcontainers:
# Default: 3 attempts for every operation
response = await em_rcontainers.cancel_job_run()
# Override per operation
response = await em_rcontainers.cancel_job_run(config_overrides={"retry_max_attempts": 5})
# Disable retries for this call
response = await em_rcontainers.cancel_job_run(config_overrides={"retry_max_attempts": 1})
Release files for capo-emr-containers 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_containers-0.1.0.tar.gz | 89.1 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| capo_emr_containers-0.1.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 287.9 kB
Release files / capo_emr_containers-0.1.0.tar.gz
| Download URL | capo_emr_containers-0.1.0.tar.gz |
|---|---|
| Size | 89.1 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
a0dc4256476013b644e43c952d3a7dbce9ec0b8f8cd6e3467a084db9a6148225
|
|
BLAKE2b-256 checksum How to use checksums |
ba4b06145b845e3a06a3e693b71d5d41117d4d226f0b762c88a12359f1862516
|
| 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_containers-0.1.0-py3-none-any.whl
| Download URL | capo_emr_containers-0.1.0-py3-none-any.whl |
|---|---|
| Size | 198.8 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
7e5c57f29351fcdb22e1159c20c782885d3e6038804161af1ba7883929da186e
|
|
BLAKE2b-256 checksum How to use checksums |
f607480396f9b4f80e68ad85b2485a74d68a2bdba24f05b741ae356d4e5e920e
|
| 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}
|