Getting Started
Installation
pip install capo-rds
Usage
from capo_rds import AsyncRDSClient
async def main():
async with AsyncRDSClient() as rds:
# Example: call the add_role_to_db_cluster operation
response = await rds.add_role_to_db_cluster()
print(response)
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_rds import AsyncRDSClient
async def main():
async with AsyncRDSClient() as rds:
# Example: paginate over describe_blue_green_deployments
async for item in rds.iter_describe_blue_green_deployments():
print(item)
Error Handling
The SDK raises exceptions for errors returned by the API. Catch them to handle failures gracefully.
from capo_rds import AsyncRDSClient
from capo_rds.error import DBClusterNotFoundFault
async def main():
async with AsyncRDSClient() as rds:
try:
await rds.add_role_to_db_cluster()
except DBClusterNotFoundFault 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_rds import AsyncRDSClient
async def main():
async with AsyncRDSClient() as rds:
# Default: 3 attempts for every operation
response = await rds.add_role_to_db_cluster()
# Override per operation
response = await rds.add_role_to_db_cluster(config_overrides={"retry_max_attempts": 5})
# Disable retries for this call
response = await rds.add_role_to_db_cluster(config_overrides={"retry_max_attempts": 1})
Release files for capo-rds 0.12.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_rds-0.12.0.tar.gz | 811.4 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| capo_rds-0.12.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 2.4 MB
Release files / capo_rds-0.12.0.tar.gz
| Download URL | capo_rds-0.12.0.tar.gz |
|---|---|
| Size | 811.4 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
e19d85f25a7f8a45c494632007b54902919944f29a98e1eea2376f1ba19e08e1
|
|
BLAKE2b-256 checksum How to use checksums |
c04808e91a04207fea875e1245fea29453c12dfdbdde0f076b273ba3f186859b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.17 {"installer":{"name":"uv","version":"0.12.17","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_rds-0.12.0-py3-none-any.whl
| Download URL | capo_rds-0.12.0-py3-none-any.whl |
|---|---|
| Size | 1.6 MB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
3fbc7ffea99c063d3617e327946c4e34e6f9c5ae305675c95d37b97ff913b99d
|
|
BLAKE2b-256 checksum How to use checksums |
507b20dd343c9375684cec2d501caa6dcc8cf0c861aad4caea58161e95795e4c
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.17 {"installer":{"name":"uv","version":"0.12.17","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}
|