Skip to main content

Getting Started

Installation

pip install capo-gamelift

Usage

from capo_gamelift import AsyncGameLiftClient


async def main():
    async with AsyncGameLiftClient() as game_lift:
        # Example: call the accept_match operation
        response = await game_lift.accept_match()
        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_gamelift import AsyncGameLiftClient


async def main():
    async with AsyncGameLiftClient() as game_lift:
        # Example: paginate over describe_fleet_attributes
        async for item in game_lift.iter_describe_fleet_attributes():
            print(item)

Error Handling

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

from capo_gamelift import AsyncGameLiftClient
from capo_gamelift.error import InternalServiceException


async def main():
    async with AsyncGameLiftClient() as game_lift:
        try:
            await game_lift.accept_match()
        except InternalServiceException 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_gamelift import AsyncGameLiftClient


async def main():
    async with AsyncGameLiftClient() as game_lift:
        # Default: 3 attempts for every operation
        response = await game_lift.accept_match()

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

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

Release files for capo-gamelift 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-gamelift 0.1.0
File Size Uploaded
capo_gamelift-0.1.0.tar.gz 430.5 kB Details

Built distribution (wheel)

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

Total release size: 1.4 MB

Release files / capo_gamelift-0.1.0.tar.gz

Download URL capo_gamelift-0.1.0.tar.gz
Size 430.5 kB
Tags Source
SHA-256 checksum
How to use checksums
89dc09fb4775d752a2d24e9b69f95b737e6b070936bb4fb65325696c0513c954
BLAKE2b-256 checksum
How to use checksums
a3d2f1e580560e87bbe24534176acda24485aca5c35c62d508b208f40b62b7af
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_gamelift-0.1.0-py3-none-any.whl

Download URL capo_gamelift-0.1.0-py3-none-any.whl
Size 946.7 kB
Tags Python 3
SHA-256 checksum
How to use checksums
e10870917cbe5f34c387ab1776776688f7eac5b3ecaae79ebaf6a64142253891
BLAKE2b-256 checksum
How to use checksums
729ac287aa4bac54cfe3fd878459f6771d266fa0ed77aa4809920ad9111122bf
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