Skip to main content

Getting Started

Installation

pip install capo-guardduty

Usage

from capo_guardduty import AsyncGuardDutyClient


async def main():
    async with AsyncGuardDutyClient() as guard_duty:
        # Example: call the accept_administrator_invitation operation
        response = await guard_duty.accept_administrator_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_guardduty import AsyncGuardDutyClient


async def main():
    async with AsyncGuardDutyClient() as guard_duty:
        # Example: paginate over describe_malware_scans
        async for item in guard_duty.iter_describe_malware_scans():
            print(item)

Error Handling

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

from capo_guardduty import AsyncGuardDutyClient
from capo_guardduty.error import BadRequestException


async def main():
    async with AsyncGuardDutyClient() as guard_duty:
        try:
            await guard_duty.accept_administrator_invitation()
        except BadRequestException 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_guardduty import AsyncGuardDutyClient


async def main():
    async with AsyncGuardDutyClient() as guard_duty:
        # Default: 3 attempts for every operation
        response = await guard_duty.accept_administrator_invitation()

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

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

Release files for capo-guardduty 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-guardduty 0.1.0
File Size Uploaded
capo_guardduty-0.1.0.tar.gz 290.4 kB Details

Built distribution (wheel)

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

Total release size: 1.1 MB

Release files / capo_guardduty-0.1.0.tar.gz

Download URL capo_guardduty-0.1.0.tar.gz
Size 290.4 kB
Tags Source
SHA-256 checksum
How to use checksums
bccc532cb796b4a1e9c8566150d5fb80fb8ff5dbdeb00c525d696cb63d5c19d0
BLAKE2b-256 checksum
How to use checksums
acc4c3c9b26b562ec8fe2071183dfc6544fbf6e103a9519b80bd3af1d2ca273c
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_guardduty-0.1.0-py3-none-any.whl

Download URL capo_guardduty-0.1.0-py3-none-any.whl
Size 762.9 kB
Tags Python 3
SHA-256 checksum
How to use checksums
63ae97de1eedab75e6d6ee7839fcc24b781b57148bdedff8ca9abe4aade3902e
BLAKE2b-256 checksum
How to use checksums
3518f922913b94b43197b4c11bff136713f8e13c4253a716be8aaa9be08cc5a6
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