Getting Started
Installation
pip install capo-elasticache
Usage
from capo_elasticache import AsyncElastiCacheClient
async def main():
async with AsyncElastiCacheClient() as elasti_cache:
# Example: call the add_tags_to_resource operation
response = await elasti_cache.add_tags_to_resource()
print(response["tag_list"])
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_elasticache import AsyncElastiCacheClient
async def main():
async with AsyncElastiCacheClient() as elasti_cache:
# Example: paginate over describe_cache_clusters
async for item in elasti_cache.iter_describe_cache_clusters():
print(item)
Error Handling
The SDK raises exceptions for errors returned by the API. Catch them to handle failures gracefully.
from capo_elasticache import AsyncElastiCacheClient
from capo_elasticache.error import CacheClusterNotFoundFault
async def main():
async with AsyncElastiCacheClient() as elasti_cache:
try:
await elasti_cache.add_tags_to_resource()
except CacheClusterNotFoundFault 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_elasticache import AsyncElastiCacheClient
async def main():
async with AsyncElastiCacheClient() as elasti_cache:
# Default: 3 attempts for every operation
response = await elasti_cache.add_tags_to_resource()
# Override per operation
response = await elasti_cache.add_tags_to_resource(config_overrides={"retry_max_attempts": 5})
# Disable retries for this call
response = await elasti_cache.add_tags_to_resource(config_overrides={"retry_max_attempts": 1})
Release files for capo-elasticache 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_elasticache-0.1.0.tar.gz | 310.4 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| capo_elasticache-0.1.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 1.0 MB
Release files / capo_elasticache-0.1.0.tar.gz
| Download URL | capo_elasticache-0.1.0.tar.gz |
|---|---|
| Size | 310.4 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
4f231d2845b90545f9fe0b699249648c499e5b0ead66b36a204649195f035f14
|
|
BLAKE2b-256 checksum How to use checksums |
2497f9e6dc4974672ae4a33d258d072394333b22355f4ec1f043d83283421905
|
| 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_elasticache-0.1.0-py3-none-any.whl
| Download URL | capo_elasticache-0.1.0-py3-none-any.whl |
|---|---|
| Size | 716.2 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
83b9d8be59435a19518b154bbb9031902ae06b90ca6e80c4d26ef164de9396ef
|
|
BLAKE2b-256 checksum How to use checksums |
953a689a5a2a60b0a724f4d72f83f7d1923ac8e0c852c113574f2dd9e39f3564
|
| 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}
|