Skip to main content

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.4.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for capo-route-53 0.4.0
File Size Uploaded
capo_route_53-0.4.0.tar.gz 245.2 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for capo-route-53 0.4.0
File Interpreter ABI Platform
capo_route_53-0.4.0-py3-none-any.whl Python 3 none any Details

Total release size: 824.4 kB

Release files / capo_route_53-0.4.0.tar.gz

Download URL capo_route_53-0.4.0.tar.gz
Size 245.2 kB
Tags Source
SHA-256 checksum
How to use checksums
e16807b519a16d059100e3df5b71106ca4c05f40de1d9a5dd5a16c20fc6069a7
BLAKE2b-256 checksum
How to use checksums
97032bd35c7a8a0acc6e7c06acd1b5938ab6a20130facf98c7536384edce2ee6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","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.4.0-py3-none-any.whl

Download URL capo_route_53-0.4.0-py3-none-any.whl
Size 579.3 kB
Tags Python 3
SHA-256 checksum
How to use checksums
8283144b30e3942bbaa304a1bc2cfb797b95e8fa9fdca52d0a6ff16ba509daf4
BLAKE2b-256 checksum
How to use checksums
fe84d8209173712a4d06ee12c05d9c0f2f930d17181511b1a4def2c399fe1a42
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","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 history Release notifications | RSS feed

0.10.0

2 release files

0.9.0

2 release files

0.8.0

2 release files

0.7.0

2 release files

0.6.0

2 release files

0.5.0

2 release files

This release

0.4.0 This release

2 release files

0.3.0

2 release files

0.2.0

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page