Getting Started
Installation
pip install capo-detective
Usage
from capo_detective import AsyncDetectiveClient
async def main():
async with AsyncDetectiveClient() as detective:
# Example: call the accept_invitation operation
response = await detective.accept_invitation()
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_detective import AsyncDetectiveClient
async def main():
async with AsyncDetectiveClient() as detective:
# Example: paginate over list_datasource_packages
async for item in detective.iter_list_datasource_packages():
print(item)
Error Handling
The SDK raises exceptions for errors returned by the API. Catch them to handle failures gracefully.
from capo_detective import AsyncDetectiveClient
from capo_detective.error import AccessDeniedException
async def main():
async with AsyncDetectiveClient() as detective:
try:
await detective.accept_invitation()
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_detective import AsyncDetectiveClient
async def main():
async with AsyncDetectiveClient() as detective:
# Default: 3 attempts for every operation
response = await detective.accept_invitation()
# Override per operation
response = await detective.accept_invitation(config_overrides={"retry_max_attempts": 5})
# Disable retries for this call
response = await detective.accept_invitation(config_overrides={"retry_max_attempts": 1})
Release files for capo-detective 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_detective-0.1.0.tar.gz | 92.9 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| capo_detective-0.1.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 301.1 kB
Release files / capo_detective-0.1.0.tar.gz
| Download URL | capo_detective-0.1.0.tar.gz |
|---|---|
| Size | 92.9 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
ab44f0a17f30cb440b9c5043536784b105ca7565aba5ed1845e6689232c6f7ec
|
|
BLAKE2b-256 checksum How to use checksums |
f830b6b7ee05c9e7422b65a60d8185c130734a80b50ac8638890017734e4c8a6
|
| 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_detective-0.1.0-py3-none-any.whl
| Download URL | capo_detective-0.1.0-py3-none-any.whl |
|---|---|
| Size | 208.2 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
fb7c8b7f95605da80f5fbcb3dc7d27ce65bb9c3d2ea0bc260378b81a00f6827f
|
|
BLAKE2b-256 checksum How to use checksums |
633b07e33a7a1bbc18eab6162c4587f0d250eced0788d0c7fe4beb30b62673eb
|
| 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}
|