Skip to main content

Getting Started

Installation

pip install capo-inspector2

Usage

from capo_inspector2 import AsyncInspector2Client


async def main():
    async with AsyncInspector2Client() as inspector2:
        # Example: call the associate_member operation
        response = await inspector2.associate_member()
        print(response["account_id"])

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_inspector2 import AsyncInspector2Client


async def main():
    async with AsyncInspector2Client() as inspector2:
        # Example: paginate over get_cis_scan_result_details
        async for item in inspector2.iter_get_cis_scan_result_details():
            print(item)

Error Handling

The SDK raises exceptions for errors returned by the API. Catch them to handle failures gracefully.

from capo_inspector2 import AsyncInspector2Client
from capo_inspector2.error import AccessDeniedException


async def main():
    async with AsyncInspector2Client() as inspector2:
        try:
            await inspector2.associate_member()
        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_inspector2 import AsyncInspector2Client


async def main():
    async with AsyncInspector2Client() as inspector2:
        # Default: 3 attempts for every operation
        response = await inspector2.associate_member()

        # Override per operation
        response = await inspector2.associate_member(config_overrides={"retry_max_attempts": 5})

        # Disable retries for this call
        response = await inspector2.associate_member(config_overrides={"retry_max_attempts": 1})

Release files for capo-inspector2 0.1.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for capo-inspector2 0.1.0
File Size Uploaded
capo_inspector2-0.1.0.tar.gz 227.9 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for capo-inspector2 0.1.0
File Interpreter ABI Platform
capo_inspector2-0.1.0-py3-none-any.whl Python 3 none any Details

Total release size: 896.3 kB

Release files / capo_inspector2-0.1.0.tar.gz

Download URL capo_inspector2-0.1.0.tar.gz
Size 227.9 kB
Tags Source
SHA-256 checksum
How to use checksums
db6494d4e7890f230553dc15d6bbe276ffbab9b5baa0d33ae97758dc4d75daf3
BLAKE2b-256 checksum
How to use checksums
91c7c6cbb1576fd33a8bea166546c179c4adceff91171a9a3f76af504adedac9
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_inspector2-0.1.0-py3-none-any.whl

Download URL capo_inspector2-0.1.0-py3-none-any.whl
Size 668.4 kB
Tags Python 3
SHA-256 checksum
How to use checksums
2ab5d6b500358af13452d3007782bed263664d33a10817e9846cb9af786d6785
BLAKE2b-256 checksum
How to use checksums
ff1a0e36eeee6ca46eeb66136d47c3e0ecc3b460bbf00dc2176175ab316be01c
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 history Release notifications | RSS feed

This release

0.1.0 This release

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page