Python SDK for Route 53.
Project description
Getting Started
Installation
pip install capo-route-53
Usage
from capo_route_53 import AsyncRoute53Client
async def main():
async with AsyncRoute53Client() as s3:
# Example: call the activate_key_signing_key operation
response = await s3.activate_key_signing_key()
print(response["change_info"])
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_route_53 import AsyncRoute53Client
async def main():
async with AsyncRoute53Client() as s3:
# Example: paginate over list_cidr_blocks
async for item in s3.iter_list_cidr_blocks():
print(item)
Error Handling
The SDK raises exceptions for errors returned by the API. Catch them to handle failures gracefully.
from capo_route_53 import AsyncRoute53Client
from capo_route_53.error import ConcurrentModification
async def main():
async with AsyncRoute53Client() as s3:
try:
await s3.activate_key_signing_key()
except ConcurrentModification 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_route_53 import AsyncRoute53Client
async def main():
async with AsyncRoute53Client() as s3:
# Default: 3 attempts for every operation
response = await s3.activate_key_signing_key()
# Override per operation
response = await s3.activate_key_signing_key(config_overrides={"retry_max_attempts": 5})
# Disable retries for this call
response = await s3.activate_key_signing_key(config_overrides={"retry_max_attempts": 1})
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file capo_route_53-0.2.0.tar.gz.
File metadata
- Download URL: capo_route_53-0.2.0.tar.gz
- Upload date:
- Size: 238.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.32 {"installer":{"name":"uv","version":"0.11.32","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}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8a9f3cf26d9a18656fba15f50f81555c1b2fb18014daa72009627589f39ac121
|
|
| MD5 |
dedab018169c1e8159b45673f855b0e7
|
|
| BLAKE2b-256 |
08496d897db90d63ec1ee9c811975e08759446d38c30ed3bb804efa174019dab
|
File details
Details for the file capo_route_53-0.2.0-py3-none-any.whl.
File metadata
- Download URL: capo_route_53-0.2.0-py3-none-any.whl
- Upload date:
- Size: 568.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.32 {"installer":{"name":"uv","version":"0.11.32","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}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
383bea7e8c33d4a298cf27e0c6e96dd7166cb2848ab09b6533dd36ca85eda322
|
|
| MD5 |
b9cd61ec910a13198b9b11ad102cbe61
|
|
| BLAKE2b-256 |
e5773103872009d667d22e95b842e090e93f68fa80e930b03e7c30a704bfc52b
|