Getting Started
Installation
pip install capo-cloudfront
Usage
from capo_cloudfront import AsyncCloudFrontClient
async def main():
async with AsyncCloudFrontClient() as s3:
# Example: call the associate_alias operation
response = await s3.associate_alias()
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_cloudfront import AsyncCloudFrontClient
async def main():
async with AsyncCloudFrontClient() as s3:
# Example: paginate over list_cloud_front_origin_access_identities
async for item in s3.iter_list_cloud_front_origin_access_identities():
print(item)
Error Handling
The SDK raises exceptions for errors returned by the API. Catch them to handle failures gracefully.
from capo_cloudfront import AsyncCloudFrontClient
from capo_cloudfront.error import AccessDenied
async def main():
async with AsyncCloudFrontClient() as s3:
try:
await s3.associate_alias()
except AccessDenied 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_cloudfront import AsyncCloudFrontClient
async def main():
async with AsyncCloudFrontClient() as s3:
# Default: 3 attempts for every operation
response = await s3.associate_alias()
# Override per operation
response = await s3.associate_alias(config_overrides={"retry_max_attempts": 5})
# Disable retries for this call
response = await s3.associate_alias(config_overrides={"retry_max_attempts": 1})
Release files for capo-cloudfront 0.4.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_cloudfront-0.4.0.tar.gz | 385.9 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| capo_cloudfront-0.4.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 1.6 MB
Release files / capo_cloudfront-0.4.0.tar.gz
| Download URL | capo_cloudfront-0.4.0.tar.gz |
|---|---|
| Size | 385.9 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
1699f1c5a01f26cebf3f09974fd5de5c9926d24d0e0d9fdb99454cd7cdc8ed17
|
|
BLAKE2b-256 checksum How to use checksums |
3d38b546f883d640e017a485e9d3679f20d010336fcf0a9167610ca822f2873c
|
| 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_cloudfront-0.4.0-py3-none-any.whl
| Download URL | capo_cloudfront-0.4.0-py3-none-any.whl |
|---|---|
| Size | 1.2 MB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
0dca35bb92d03eb0fe8a41f74301e8da471ef7dfbc328016e577b6459fe5128b
|
|
BLAKE2b-256 checksum How to use checksums |
fa33add6844a62ccbc0f653725c80e7ffeed7348e5804f7900f187b4cebf2c02
|
| 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}
|