Getting Started
Installation
pip install capo-fsx
Usage
from capo_fsx import AsyncFSxClient
async def main():
async with AsyncFSxClient() as f_sx:
# Example: call the associate_file_system_aliases operation
response = await f_sx.associate_file_system_aliases()
print(response["aliases"])
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_fsx import AsyncFSxClient
async def main():
async with AsyncFSxClient() as f_sx:
# Example: paginate over describe_backups
async for item in f_sx.iter_describe_backups():
print(item)
Error Handling
The SDK raises exceptions for errors returned by the API. Catch them to handle failures gracefully.
from capo_fsx import AsyncFSxClient
from capo_fsx.error import BadRequest
async def main():
async with AsyncFSxClient() as f_sx:
try:
await f_sx.associate_file_system_aliases()
except BadRequest 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_fsx import AsyncFSxClient
async def main():
async with AsyncFSxClient() as f_sx:
# Default: 3 attempts for every operation
response = await f_sx.associate_file_system_aliases()
# Override per operation
response = await f_sx.associate_file_system_aliases(config_overrides={"retry_max_attempts": 5})
# Disable retries for this call
response = await f_sx.associate_file_system_aliases(config_overrides={"retry_max_attempts": 1})
Release files for capo-fsx 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_fsx-0.1.0.tar.gz | 263.9 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| capo_fsx-0.1.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 850.5 kB
Release files / capo_fsx-0.1.0.tar.gz
| Download URL | capo_fsx-0.1.0.tar.gz |
|---|---|
| Size | 263.9 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
eec5405783a09f0f4e5b26da2f0fe3fee6582b3fe20f961efcae9ba472c8daf5
|
|
BLAKE2b-256 checksum How to use checksums |
b854c91b684ef23d227f6ab2f84441300df13073a5af6245e04a2708ce7a78b4
|
| 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_fsx-0.1.0-py3-none-any.whl
| Download URL | capo_fsx-0.1.0-py3-none-any.whl |
|---|---|
| Size | 586.6 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
26a0cd34af5a0c495058c65e6fd0008ce4b8e3d0c776561a30e5dc2450889cfb
|
|
BLAKE2b-256 checksum How to use checksums |
ede1c68ad52b1dead21b09af4ec08b7d2eb5d967583a993b7ea9eaafe10d49ff
|
| 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}
|