Getting Started
Installation
pip install capo-inspector
Usage
from capo_inspector import AsyncInspectorClient
async def main():
async with AsyncInspectorClient() as inspector:
# Example: call the add_attributes_to_findings operation
response = await inspector.add_attributes_to_findings()
print(response["failed_items"])
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_inspector import AsyncInspectorClient
async def main():
async with AsyncInspectorClient() as inspector:
# Example: paginate over get_exclusions_preview
async for item in inspector.iter_get_exclusions_preview():
print(item)
Error Handling
The SDK raises exceptions for errors returned by the API. Catch them to handle failures gracefully.
from capo_inspector import AsyncInspectorClient
from capo_inspector.error import AccessDeniedException
async def main():
async with AsyncInspectorClient() as inspector:
try:
await inspector.add_attributes_to_findings()
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_inspector import AsyncInspectorClient
async def main():
async with AsyncInspectorClient() as inspector:
# Default: 3 attempts for every operation
response = await inspector.add_attributes_to_findings()
# Override per operation
response = await inspector.add_attributes_to_findings(config_overrides={"retry_max_attempts": 5})
# Disable retries for this call
response = await inspector.add_attributes_to_findings(config_overrides={"retry_max_attempts": 1})
Release files for capo-inspector 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_inspector-0.1.0.tar.gz | 111.2 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| capo_inspector-0.1.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 391.3 kB
Release files / capo_inspector-0.1.0.tar.gz
| Download URL | capo_inspector-0.1.0.tar.gz |
|---|---|
| Size | 111.2 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
91bf3957918bfd2db3f9b993d27fa651251b53efaae6bfc68942f53fcd15866c
|
|
BLAKE2b-256 checksum How to use checksums |
aca2bb1d2aea04544566da98e30391d6329fe9741e813e2347b917881c3b7303
|
| 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_inspector-0.1.0-py3-none-any.whl
| Download URL | capo_inspector-0.1.0-py3-none-any.whl |
|---|---|
| Size | 280.1 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
b8d7b727026e4f033b0e8d6fe56e6c950c21177a8d49c77b9ea1d0db239f532f
|
|
BLAKE2b-256 checksum How to use checksums |
805a241f35c5ed5972cc043e7811f084d545e28c143f53ad6700bdf9a1fd7760
|
| 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}
|