Getting Started
Installation
pip install capo-finspace-data
Usage
from capo_finspace_data import AsyncfinspacedataClient
async def main():
async with AsyncfinspacedataClient() as finspacedata:
# Example: call the associate_user_to_permission_group operation
response = await finspacedata.associate_user_to_permission_group()
print(response["status_code"])
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_data import AsyncfinspacedataClient
async def main():
async with AsyncfinspacedataClient() as finspacedata:
# Example: paginate over list_changesets
async for item in finspacedata.iter_list_changesets():
print(item)
Error Handling
The SDK raises exceptions for errors returned by the API. Catch them to handle failures gracefully.
from capo_finspace_data import AsyncfinspacedataClient
from capo_finspace_data.error import AccessDeniedException
async def main():
async with AsyncfinspacedataClient() as finspacedata:
try:
await finspacedata.associate_user_to_permission_group()
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_data import AsyncfinspacedataClient
async def main():
async with AsyncfinspacedataClient() as finspacedata:
# Default: 3 attempts for every operation
response = await finspacedata.associate_user_to_permission_group()
# Override per operation
response = await finspacedata.associate_user_to_permission_group(config_overrides={"retry_max_attempts": 5})
# Disable retries for this call
response = await finspacedata.associate_user_to_permission_group(config_overrides={"retry_max_attempts": 1})
Release files for capo-finspace-data 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_data-0.1.0.tar.gz | 106.5 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| capo_finspace_data-0.1.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 343.5 kB
Release files / capo_finspace_data-0.1.0.tar.gz
| Download URL | capo_finspace_data-0.1.0.tar.gz |
|---|---|
| Size | 106.5 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
76264a83062b7a50df8bb3874f0f898df946e228a5cd9897b6b15f7cd045697e
|
|
BLAKE2b-256 checksum How to use checksums |
a37a80ea038279991ddbe60abb8dd77e8b87bb6fdad9b2581e470cc6d7074a4b
|
| 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_data-0.1.0-py3-none-any.whl
| Download URL | capo_finspace_data-0.1.0-py3-none-any.whl |
|---|---|
| Size | 237.0 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
c8573cfb85fa039e232322af8ecacfe33ec06a20ba94b48cfd26ed1096741478
|
|
BLAKE2b-256 checksum How to use checksums |
f1f6802dbf7e9bc8728b01c6c2d3fbed6bcaff1ccf0c940b27b976092c1027b8
|
| 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}
|