Getting Started
Installation
pip install capo-evs
Usage
from capo_evs import AsyncevsClient
async def main():
async with AsyncevsClient() as evs:
# Example: call the get_versions operation
response = await evs.get_versions()
print(response["vcf_versions"])
Error Handling
The SDK raises exceptions for errors returned by the API. Catch them to handle failures gracefully.
from capo_evs import AsyncevsClient
from capo_evs.error import InternalServerException
async def main():
async with AsyncevsClient() as evs:
try:
await evs.get_versions()
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_evs import AsyncevsClient
async def main():
async with AsyncevsClient() as evs:
# Default: 3 attempts for every operation
response = await evs.get_versions()
# Override per operation
response = await evs.get_versions(config_overrides={"retry_max_attempts": 5})
# Disable retries for this call
response = await evs.get_versions(config_overrides={"retry_max_attempts": 1})
Release files for capo-evs 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_evs-0.1.0.tar.gz | 94.0 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| capo_evs-0.1.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 290.8 kB
Release files / capo_evs-0.1.0.tar.gz
| Download URL | capo_evs-0.1.0.tar.gz |
|---|---|
| Size | 94.0 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
42fecba058643c9170cf3c515a8c5bab625f77f404ff2bec848243b15ddd8caa
|
|
BLAKE2b-256 checksum How to use checksums |
88538e0aa2bc3d0822497656ec92c3ecde353b0b1bfd0ff35cd7c19d68ce4fdd
|
| 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_evs-0.1.0-py3-none-any.whl
| Download URL | capo_evs-0.1.0-py3-none-any.whl |
|---|---|
| Size | 196.8 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
5e07a45f4e1d069e5fc726ca61ed8479d5b54a9c169a20f54943c2559590fbe5
|
|
BLAKE2b-256 checksum How to use checksums |
44c1fe89086906c2144275506e4fdbd2ff2841f0896250aaf1ff4606eff7dae5
|
| 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}
|