Skip to main content

Getting Started

Installation

pip install capo-fms

Usage

from capo_fms import AsyncFMSClient


async def main():
    async with AsyncFMSClient() as fms:
        # Example: call the associate_admin_account operation
        response = await fms.associate_admin_account()
        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_fms import AsyncFMSClient


async def main():
    async with AsyncFMSClient() as fms:
        # Example: paginate over list_admin_accounts_for_organization
        async for item in fms.iter_list_admin_accounts_for_organization():
            print(item)

Error Handling

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

from capo_fms import AsyncFMSClient
from capo_fms.error import InternalErrorException


async def main():
    async with AsyncFMSClient() as fms:
        try:
            await fms.associate_admin_account()
        except InternalErrorException 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_fms import AsyncFMSClient


async def main():
    async with AsyncFMSClient() as fms:
        # Default: 3 attempts for every operation
        response = await fms.associate_admin_account()

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

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

Release files for capo-fms 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-fms 0.1.0
File Size Uploaded
capo_fms-0.1.0.tar.gz 148.8 kB Details

Built distribution (wheel)

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

Total release size: 511.8 kB

Release files / capo_fms-0.1.0.tar.gz

Download URL capo_fms-0.1.0.tar.gz
Size 148.8 kB
Tags Source
SHA-256 checksum
How to use checksums
dcaf1b26b9229b2d426e0c4a9c9b2ec144dd69479d129d3953e030a977d2a986
BLAKE2b-256 checksum
How to use checksums
446d6c5778bc023d545e7404d0f92546064c526de51c94612358010610fd21d4
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_fms-0.1.0-py3-none-any.whl

Download URL capo_fms-0.1.0-py3-none-any.whl
Size 363.1 kB
Tags Python 3
SHA-256 checksum
How to use checksums
3edb834b888d4350cff95c8232e457515701174615ec0369acb19ba08b33de85
BLAKE2b-256 checksum
How to use checksums
ccb48b24ec8e6e0cd7ce904f0cdcac31d5f6d2b2c0169b03c25516d726d92918
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