Getting Started
Installation
pip install capo-docdb-elastic
Usage
from capo_docdb_elastic import AsyncDocDBElasticClient
async def main():
async with AsyncDocDBElasticClient() as doc_db_elastic:
# Example: call the apply_pending_maintenance_action operation
response = await doc_db_elastic.apply_pending_maintenance_action()
print(response["resource_pending_maintenance_action"])
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_docdb_elastic import AsyncDocDBElasticClient
async def main():
async with AsyncDocDBElasticClient() as doc_db_elastic:
# Example: paginate over list_clusters
async for item in doc_db_elastic.iter_list_clusters():
print(item)
Error Handling
The SDK raises exceptions for errors returned by the API. Catch them to handle failures gracefully.
from capo_docdb_elastic import AsyncDocDBElasticClient
from capo_docdb_elastic.error import AccessDeniedException
async def main():
async with AsyncDocDBElasticClient() as doc_db_elastic:
try:
await doc_db_elastic.apply_pending_maintenance_action()
except AccessDeniedException 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_docdb_elastic import AsyncDocDBElasticClient
async def main():
async with AsyncDocDBElasticClient() as doc_db_elastic:
# Default: 3 attempts for every operation
response = await doc_db_elastic.apply_pending_maintenance_action()
# Override per operation
response = await doc_db_elastic.apply_pending_maintenance_action(config_overrides={"retry_max_attempts": 5})
# Disable retries for this call
response = await doc_db_elastic.apply_pending_maintenance_action(config_overrides={"retry_max_attempts": 1})
Release files for capo-docdb-elastic 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_docdb_elastic-0.1.0.tar.gz | 77.7 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| capo_docdb_elastic-0.1.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 227.0 kB
Release files / capo_docdb_elastic-0.1.0.tar.gz
| Download URL | capo_docdb_elastic-0.1.0.tar.gz |
|---|---|
| Size | 77.7 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
ab4de296b58811ae1973ed21ad96d5c68d4a21256e9a76812d1e6969b2ae53d4
|
|
BLAKE2b-256 checksum How to use checksums |
960687ccd3fb7bf32af7b4678b04cbe388b790e53d4503ae6b70aeb96af045f4
|
| 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_docdb_elastic-0.1.0-py3-none-any.whl
| Download URL | capo_docdb_elastic-0.1.0-py3-none-any.whl |
|---|---|
| Size | 149.4 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
c152b35ee1ed7c6fdc79632ce4ff68f7a1741032f788f114881279968930eba8
|
|
BLAKE2b-256 checksum How to use checksums |
04138fa4206c8150fbbfed589cbde1517195aa2bea3da87083fe600cb03f12f1
|
| 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}
|