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})
Release files for capo-route-53 0.3.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_route_53-0.3.0.tar.gz | 243.3 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| capo_route_53-0.3.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 816.1 kB
Release files / capo_route_53-0.3.0.tar.gz
| Download URL | capo_route_53-0.3.0.tar.gz |
|---|---|
| Size | 243.3 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
761853186e6d9baa34592e9b8e5a14fc5529fe72cea496be0b53b6a4e67a11bd
|
|
BLAKE2b-256 checksum How to use checksums |
af5c88c9edbf955181ac74a83db684cd11026a8e35e7c13d910f7120b809e2ec
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","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_route_53-0.3.0-py3-none-any.whl
| Download URL | capo_route_53-0.3.0-py3-none-any.whl |
|---|---|
| Size | 572.8 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
25750b8132a2845e971191b201213eb54568d71b66ee8251eed0f560a4c2a393
|
|
BLAKE2b-256 checksum How to use checksums |
025461d54991092754d40b2ea439ae2dda31d77a1277d8c12254d38dbfaaee0e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","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}
|