Getting Started
Installation
pip install capo-frauddetector
Usage
from capo_frauddetector import AsyncFraudDetectorClient
async def main():
async with AsyncFraudDetectorClient() as fraud_detector:
# Example: call the batch_create_variable operation
response = await fraud_detector.batch_create_variable()
print(response["errors"])
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_frauddetector import AsyncFraudDetectorClient
async def main():
async with AsyncFraudDetectorClient() as fraud_detector:
# Example: paginate over describe_model_versions
async for item in fraud_detector.iter_describe_model_versions():
print(item)
Error Handling
The SDK raises exceptions for errors returned by the API. Catch them to handle failures gracefully.
from capo_frauddetector import AsyncFraudDetectorClient
from capo_frauddetector.error import AccessDeniedException
async def main():
async with AsyncFraudDetectorClient() as fraud_detector:
try:
await fraud_detector.batch_create_variable()
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_frauddetector import AsyncFraudDetectorClient
async def main():
async with AsyncFraudDetectorClient() as fraud_detector:
# Default: 3 attempts for every operation
response = await fraud_detector.batch_create_variable()
# Override per operation
response = await fraud_detector.batch_create_variable(config_overrides={"retry_max_attempts": 5})
# Disable retries for this call
response = await fraud_detector.batch_create_variable(config_overrides={"retry_max_attempts": 1})
Release files for capo-frauddetector 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_frauddetector-0.1.0.tar.gz | 164.0 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| capo_frauddetector-0.1.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 625.4 kB
Release files / capo_frauddetector-0.1.0.tar.gz
| Download URL | capo_frauddetector-0.1.0.tar.gz |
|---|---|
| Size | 164.0 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
8703006ae1dfde07083eba03387a12f5a88934d08b57143f96108f95b486c26d
|
|
BLAKE2b-256 checksum How to use checksums |
d01df41b6a291631805f0ade17f61ac979486abb0c580156164f25d187681f49
|
| 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_frauddetector-0.1.0-py3-none-any.whl
| Download URL | capo_frauddetector-0.1.0-py3-none-any.whl |
|---|---|
| Size | 461.4 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
e0fdab7c3309d81ce872f961c05e25c829c37424934ef243b4bedb74f6fc8e83
|
|
BLAKE2b-256 checksum How to use checksums |
580dcab89a916e197f5eff7c016f6d18fe9640fc739fc3a638ce704fe74f4e41
|
| 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}
|