Getting Started
Installation
pip install capo-dsql
Usage
from capo_dsql import AsyncDSQLClient
async def main():
async with AsyncDSQLClient() as dsql:
# Example: call the list_tags_for_resource operation
response = await dsql.list_tags_for_resource()
print(response["tags"])
Error Handling
The SDK raises exceptions for errors returned by the API. Catch them to handle failures gracefully.
from capo_dsql import AsyncDSQLClient
from capo_dsql.error import AccessDeniedException
async def main():
async with AsyncDSQLClient() as dsql:
try:
await dsql.list_tags_for_resource()
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_dsql import AsyncDSQLClient
async def main():
async with AsyncDSQLClient() as dsql:
# Default: 3 attempts for every operation
response = await dsql.list_tags_for_resource()
# Override per operation
response = await dsql.list_tags_for_resource(config_overrides={"retry_max_attempts": 5})
# Disable retries for this call
response = await dsql.list_tags_for_resource(config_overrides={"retry_max_attempts": 1})
Release files for capo-dsql 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_dsql-0.1.0.tar.gz | 71.4 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| capo_dsql-0.1.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 208.3 kB
Release files / capo_dsql-0.1.0.tar.gz
| Download URL | capo_dsql-0.1.0.tar.gz |
|---|---|
| Size | 71.4 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
3a45d66ecae140147989246205c6c7513b7c578200a62d1112a68e1ffc843ba0
|
|
BLAKE2b-256 checksum How to use checksums |
bc6b764cb3c2362027beb9b5bb66bd465a558767bd7f84a2b5a76f720d3bfaca
|
| 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_dsql-0.1.0-py3-none-any.whl
| Download URL | capo_dsql-0.1.0-py3-none-any.whl |
|---|---|
| Size | 136.9 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
9ac4e1154cac452662ed3f0d1228df37e9054a09502b0adf77182996f13eec08
|
|
BLAKE2b-256 checksum How to use checksums |
3a78beb652d3ae2a73643551981b93324a491088c8728da683cbe4d932be31cc
|
| 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}
|