Getting Started
Installation
pip install capo-sns
Usage
from capo_sns import AsyncSNSClient
async def main():
async with AsyncSNSClient() as sns:
# Example: call the add_permission operation
response = await sns.add_permission()
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_sns import AsyncSNSClient
async def main():
async with AsyncSNSClient() as sns:
# Example: paginate over list_endpoints_by_platform_application
async for item in sns.iter_list_endpoints_by_platform_application():
print(item)
Error Handling
The SDK raises exceptions for errors returned by the API. Catch them to handle failures gracefully.
from capo_sns import AsyncSNSClient
from capo_sns.error import AuthorizationErrorException
async def main():
async with AsyncSNSClient() as sns:
try:
await sns.add_permission()
except AuthorizationErrorException 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_sns import AsyncSNSClient
async def main():
async with AsyncSNSClient() as sns:
# Default: 3 attempts for every operation
response = await sns.add_permission()
# Override per operation
response = await sns.add_permission(config_overrides={"retry_max_attempts": 5})
# Disable retries for this call
response = await sns.add_permission(config_overrides={"retry_max_attempts": 1})
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_sns-0.1.0.tar.gz.
File metadata
- Download URL: capo_sns-0.1.0.tar.gz
- Upload date:
- Size: 139.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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 |
35930f890c63b9b59ccd9dd3073a06ae85a286b4a193a341ac794c568e37ea5b
|
|
| MD5 |
adfda3f54f83a320542d316a6a100752
|
|
| BLAKE2b-256 |
1e3a2c13afd3cd43ec4f608dd5dd2b7cfa220a3ce96c488f15e2d82b5f901b18
|
File details
Details for the file capo_sns-0.1.0-py3-none-any.whl.
File metadata
- Download URL: capo_sns-0.1.0-py3-none-any.whl
- Upload date:
- Size: 309.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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 |
2697d41f20f8affaf4c791878cc81141e813d2daa899ef382b6553e5d0d62ad7
|
|
| MD5 |
5f35068c201b4f1a2784466415f19d3c
|
|
| BLAKE2b-256 |
7a104ac131395bb1ec292e155d772513b6c812afda56c2d7075ea973ed7a4d45
|