Skip to main content

Getting Started

Installation

pip install capo-kendra-ranking

Usage

from capo_kendra_ranking import AsyncKendraRankingClient


async def main():
    async with AsyncKendraRankingClient() as kendra_ranking:
        # Example: call the create_rescore_execution_plan operation
        response = await kendra_ranking.create_rescore_execution_plan()
        print(response["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_kendra_ranking import AsyncKendraRankingClient


async def main():
    async with AsyncKendraRankingClient() as kendra_ranking:
        # Example: paginate over list_rescore_execution_plans
        async for item in kendra_ranking.iter_list_rescore_execution_plans():
            print(item)

Error Handling

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

from capo_kendra_ranking import AsyncKendraRankingClient
from capo_kendra_ranking.error import AccessDeniedException


async def main():
    async with AsyncKendraRankingClient() as kendra_ranking:
        try:
            await kendra_ranking.create_rescore_execution_plan()
        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_kendra_ranking import AsyncKendraRankingClient


async def main():
    async with AsyncKendraRankingClient() as kendra_ranking:
        # Default: 3 attempts for every operation
        response = await kendra_ranking.create_rescore_execution_plan()

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

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

Release files for capo-kendra-ranking 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-kendra-ranking 0.1.0
File Size Uploaded
capo_kendra_ranking-0.1.0.tar.gz 60.7 kB Details

Built distribution (wheel)

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

Total release size: 164.8 kB

Release files / capo_kendra_ranking-0.1.0.tar.gz

Download URL capo_kendra_ranking-0.1.0.tar.gz
Size 60.7 kB
Tags Source
SHA-256 checksum
How to use checksums
1f0a3f6f1122e33e291a66d49280bd8d85ee151db111778d630bcfa919a41c62
BLAKE2b-256 checksum
How to use checksums
e3229c7fc9b42c476825b44b15dd66a3e2a7e26af1eddda7c11de378966b97ab
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_kendra_ranking-0.1.0-py3-none-any.whl

Download URL capo_kendra_ranking-0.1.0-py3-none-any.whl
Size 104.1 kB
Tags Python 3
SHA-256 checksum
How to use checksums
fd136abf11371b9bbe551c0169eee2e1b2f695b08fbfa098fec06dfb20e427d6
BLAKE2b-256 checksum
How to use checksums
2d970a861fbb28d37cc5cdb029af66b55f3dd60b7a69d58e50f749b4cc1248f6
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