Getting Started
Installation
pip install capo-freetier
Usage
from capo_freetier import AsyncFreeTierClient
async def main():
async with AsyncFreeTierClient() as free_tier:
# Example: call the get_account_activity operation
response = await free_tier.get_account_activity()
print(response["activity_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_freetier import AsyncFreeTierClient
async def main():
async with AsyncFreeTierClient() as free_tier:
# Example: paginate over get_free_tier_usage
async for item in free_tier.iter_get_free_tier_usage():
print(item)
Error Handling
The SDK raises exceptions for errors returned by the API. Catch them to handle failures gracefully.
from capo_freetier import AsyncFreeTierClient
from capo_freetier.error import InternalServerException
async def main():
async with AsyncFreeTierClient() as free_tier:
try:
await free_tier.get_account_activity()
except InternalServerException 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_freetier import AsyncFreeTierClient
async def main():
async with AsyncFreeTierClient() as free_tier:
# Default: 3 attempts for every operation
response = await free_tier.get_account_activity()
# Override per operation
response = await free_tier.get_account_activity(config_overrides={"retry_max_attempts": 5})
# Disable retries for this call
response = await free_tier.get_account_activity(config_overrides={"retry_max_attempts": 1})
Release files for capo-freetier 0.1.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| capo_freetier-0.1.0.tar.gz | 54.9 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| capo_freetier-0.1.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 139.3 kB
Release files / capo_freetier-0.1.0.tar.gz
| Download URL | capo_freetier-0.1.0.tar.gz |
|---|---|
| Size | 54.9 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
31b265c1c4dfce05953914a6bfe3e650dbf6911f21042cb1d2afd55f5fc9f2d4
|
|
BLAKE2b-256 checksum How to use checksums |
3b0c431b979e2b29eac0e8f4c64dbb2d162d00436234d77a5d90461e088d9c46
|
| 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_freetier-0.1.0-py3-none-any.whl
| Download URL | capo_freetier-0.1.0-py3-none-any.whl |
|---|---|
| Size | 84.4 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
a2d97811504ddb6128fe77681e3fb311033c9c1697b43448064c9461981f3149
|
|
BLAKE2b-256 checksum How to use checksums |
79f298f77a3f26677f21d95d1599a561ef88fbb994a69d1930ca05a5afe255ab
|
| 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}
|