Getting Started
Installation
pip install capo-docdb
Usage
from capo_docdb import AsyncDocDBClient
async def main():
async with AsyncDocDBClient() as doc_db:
# Example: call the add_source_identifier_to_subscription operation
response = await doc_db.add_source_identifier_to_subscription()
print(response["event_subscription"])
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_docdb import AsyncDocDBClient
async def main():
async with AsyncDocDBClient() as doc_db:
# Example: paginate over describe_certificates
async for item in doc_db.iter_describe_certificates():
print(item)
Error Handling
The SDK raises exceptions for errors returned by the API. Catch them to handle failures gracefully.
from capo_docdb import AsyncDocDBClient
from capo_docdb.error import SourceNotFoundFault
async def main():
async with AsyncDocDBClient() as doc_db:
try:
await doc_db.add_source_identifier_to_subscription()
except SourceNotFoundFault 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_docdb import AsyncDocDBClient
async def main():
async with AsyncDocDBClient() as doc_db:
# Default: 3 attempts for every operation
response = await doc_db.add_source_identifier_to_subscription()
# Override per operation
response = await doc_db.add_source_identifier_to_subscription(config_overrides={"retry_max_attempts": 5})
# Disable retries for this call
response = await doc_db.add_source_identifier_to_subscription(config_overrides={"retry_max_attempts": 1})
Release files for capo-docdb 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_docdb-0.1.0.tar.gz | 204.3 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| capo_docdb-0.1.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 674.5 kB
Release files / capo_docdb-0.1.0.tar.gz
| Download URL | capo_docdb-0.1.0.tar.gz |
|---|---|
| Size | 204.3 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
4c12f6efadd8cf90597e80009abcb52c1851059c7d2c31506f6f7f4bf6b72a00
|
|
BLAKE2b-256 checksum How to use checksums |
e88d8319db7ccd28d9e5e2ffeec670316a723868553a96aafaa2995048926d3d
|
| 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_docdb-0.1.0-py3-none-any.whl
| Download URL | capo_docdb-0.1.0-py3-none-any.whl |
|---|---|
| Size | 470.2 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
85ba76ec51a64b67b2d306dce27145fa98288458def990a90a241e9773befd9a
|
|
BLAKE2b-256 checksum How to use checksums |
90c27b7b34cceb0e19db1fd1f4ad09881bf210441b4816e72ceb19b890869a58
|
| 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}
|