Getting Started
Installation
pip install capo-finspace
Usage
from capo_finspace import AsyncfinspaceClient
async def main():
async with AsyncfinspaceClient() as finspace:
# Example: call the create_environment operation
response = await finspace.create_environment()
print(response["environment_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_finspace import AsyncfinspaceClient
async def main():
async with AsyncfinspaceClient() as finspace:
# Example: paginate over list_kx_changesets
async for item in finspace.iter_list_kx_changesets():
print(item)
Error Handling
The SDK raises exceptions for errors returned by the API. Catch them to handle failures gracefully.
from capo_finspace import AsyncfinspaceClient
from capo_finspace.error import AccessDeniedException
async def main():
async with AsyncfinspaceClient() as finspace:
try:
await finspace.create_environment()
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_finspace import AsyncfinspaceClient
async def main():
async with AsyncfinspaceClient() as finspace:
# Default: 3 attempts for every operation
response = await finspace.create_environment()
# Override per operation
response = await finspace.create_environment(config_overrides={"retry_max_attempts": 5})
# Disable retries for this call
response = await finspace.create_environment(config_overrides={"retry_max_attempts": 1})
Release files for capo-finspace 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_finspace-0.1.0.tar.gz | 156.2 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| capo_finspace-0.1.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 540.2 kB
Release files / capo_finspace-0.1.0.tar.gz
| Download URL | capo_finspace-0.1.0.tar.gz |
|---|---|
| Size | 156.2 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
4e3f723c8511bd4827114c8678de5a1b8d7ac1126ab7ccfd1bc36ca6cb426537
|
|
BLAKE2b-256 checksum How to use checksums |
b66c31cc81c615961ec5f7744837384c0c8bccd8f1cd9d756ed49b2ecdc87536
|
| 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_finspace-0.1.0-py3-none-any.whl
| Download URL | capo_finspace-0.1.0-py3-none-any.whl |
|---|---|
| Size | 384.0 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
e146a934a5044e45f772c89d086de6310bbadd1ebe4f5999dc49d2591b17cfa4
|
|
BLAKE2b-256 checksum How to use checksums |
1bf8cd8f301957f73cee542c4fa016d22102ff44b4d3cf9f569eede415dbea97
|
| 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}
|