Getting Started
Installation
pip install capo-emr-serverless
Usage
from capo_emr_serverless import AsyncEMRServerlessClient
async def main():
async with AsyncEMRServerlessClient() as emr_serverless:
# Example: call the list_tags_for_resource operation
response = await emr_serverless.list_tags_for_resource()
print(response["tags"])
Error Handling
The SDK raises exceptions for errors returned by the API. Catch them to handle failures gracefully.
from capo_emr_serverless import AsyncEMRServerlessClient
from capo_emr_serverless.error import InternalServerException
async def main():
async with AsyncEMRServerlessClient() as emr_serverless:
try:
await emr_serverless.list_tags_for_resource()
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_serverless import AsyncEMRServerlessClient
async def main():
async with AsyncEMRServerlessClient() as emr_serverless:
# Default: 3 attempts for every operation
response = await emr_serverless.list_tags_for_resource()
# Override per operation
response = await emr_serverless.list_tags_for_resource(config_overrides={"retry_max_attempts": 5})
# Disable retries for this call
response = await emr_serverless.list_tags_for_resource(config_overrides={"retry_max_attempts": 1})
Release files for capo-emr-serverless 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_serverless-0.1.0.tar.gz | 96.0 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| capo_emr_serverless-0.1.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 308.9 kB
Release files / capo_emr_serverless-0.1.0.tar.gz
| Download URL | capo_emr_serverless-0.1.0.tar.gz |
|---|---|
| Size | 96.0 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
15c2645553a470b4ed904ebfc0c2870aa9756f45e32efbbd83f176af0393fb1a
|
|
BLAKE2b-256 checksum How to use checksums |
8193e91ac5bf28ce86146b8cbdc84f35f1bbf871272537a4f5026bc941ae1ef9
|
| 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_serverless-0.1.0-py3-none-any.whl
| Download URL | capo_emr_serverless-0.1.0-py3-none-any.whl |
|---|---|
| Size | 212.9 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
bf41fce9136abaf43d12b81b1d2e6cf7cd149b40cce66f77293532497a84c851
|
|
BLAKE2b-256 checksum How to use checksums |
22a98fdf21d17bee8fdd82af6ff6d665b96570af2d524bb80ed83c6dada866ee
|
| 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}
|