Getting Started
Installation
pip install capo-customer-profiles
Usage
from capo_customer_profiles import AsyncCustomerProfilesClient
async def main():
async with AsyncCustomerProfilesClient() as customer_profiles:
# Example: call the add_profile_key operation
response = await customer_profiles.add_profile_key()
print(response["key_name"])
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_customer_profiles import AsyncCustomerProfilesClient
async def main():
async with AsyncCustomerProfilesClient() as customer_profiles:
# Example: paginate over get_similar_profiles
async for item in customer_profiles.iter_get_similar_profiles():
print(item)
Error Handling
The SDK raises exceptions for errors returned by the API. Catch them to handle failures gracefully.
from capo_customer_profiles import AsyncCustomerProfilesClient
from capo_customer_profiles.error import AccessDeniedException
async def main():
async with AsyncCustomerProfilesClient() as customer_profiles:
try:
await customer_profiles.add_profile_key()
except AccessDeniedException 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_customer_profiles import AsyncCustomerProfilesClient
async def main():
async with AsyncCustomerProfilesClient() as customer_profiles:
# Default: 3 attempts for every operation
response = await customer_profiles.add_profile_key()
# Override per operation
response = await customer_profiles.add_profile_key(config_overrides={"retry_max_attempts": 5})
# Disable retries for this call
response = await customer_profiles.add_profile_key(config_overrides={"retry_max_attempts": 1})
Release files for capo-customer-profiles 0.1.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_customer_profiles-0.1.0.tar.gz | 271.4 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| capo_customer_profiles-0.1.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 1.0 MB
Release files / capo_customer_profiles-0.1.0.tar.gz
| Download URL | capo_customer_profiles-0.1.0.tar.gz |
|---|---|
| Size | 271.4 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
b248a1aa63cdd2f4b33752f016c1b696040d21c11147f5f7d7bb00a997e851e7
|
|
BLAKE2b-256 checksum How to use checksums |
c640f9d8ca5e43fdb5fc9862b009b2e7fdc58396c966f1cd59b9e9e794f25326
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.19 {"installer":{"name":"uv","version":"0.12.19","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_customer_profiles-0.1.0-py3-none-any.whl
| Download URL | capo_customer_profiles-0.1.0-py3-none-any.whl |
|---|---|
| Size | 777.0 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
03740003767ea136491d0711fe250e1d0c6b5cc9b770de575c60ffb7612ab73d
|
|
BLAKE2b-256 checksum How to use checksums |
85b6ec3fc6835eb69ee72caee6a359e3fcc715e0c984b5a68464bf885441e42f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.19 {"installer":{"name":"uv","version":"0.12.19","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}
|