Getting Started
Installation
pip install capo-entityresolution
Usage
from capo_entityresolution import AsyncEntityResolutionClient
async def main():
async with AsyncEntityResolutionClient() as entity_resolution:
# Example: call the add_policy_statement operation
response = await entity_resolution.add_policy_statement()
print(response["arn"])
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_entityresolution import AsyncEntityResolutionClient
async def main():
async with AsyncEntityResolutionClient() as entity_resolution:
# Example: paginate over list_id_mapping_jobs
async for item in entity_resolution.iter_list_id_mapping_jobs():
print(item)
Error Handling
The SDK raises exceptions for errors returned by the API. Catch them to handle failures gracefully.
from capo_entityresolution import AsyncEntityResolutionClient
from capo_entityresolution.error import AccessDeniedException
async def main():
async with AsyncEntityResolutionClient() as entity_resolution:
try:
await entity_resolution.add_policy_statement()
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_entityresolution import AsyncEntityResolutionClient
async def main():
async with AsyncEntityResolutionClient() as entity_resolution:
# Default: 3 attempts for every operation
response = await entity_resolution.add_policy_statement()
# Override per operation
response = await entity_resolution.add_policy_statement(config_overrides={"retry_max_attempts": 5})
# Disable retries for this call
response = await entity_resolution.add_policy_statement(config_overrides={"retry_max_attempts": 1})
Release files for capo-entityresolution 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_entityresolution-0.1.0.tar.gz | 123.3 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| capo_entityresolution-0.1.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 426.8 kB
Release files / capo_entityresolution-0.1.0.tar.gz
| Download URL | capo_entityresolution-0.1.0.tar.gz |
|---|---|
| Size | 123.3 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
8afda43024d1ef9bbbc4ce00630427adb6a37d6f797b4130d4a2f32739fa9997
|
|
BLAKE2b-256 checksum How to use checksums |
4a708379110e2c633ef771b80c04ca401c5a2c5e23f8a92bfc5fad6e5efc0c03
|
| 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_entityresolution-0.1.0-py3-none-any.whl
| Download URL | capo_entityresolution-0.1.0-py3-none-any.whl |
|---|---|
| Size | 303.5 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
bdc26bbbb56806b6e2cd303c57fe3b7aecb90d4c884bc49b0780b85c054421e9
|
|
BLAKE2b-256 checksum How to use checksums |
d6d7c123b1e62f4d0516a025cebf41a4f58f9e23d30b6ff193eda69d1e73eff5
|
| 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}
|