Getting Started
Installation
pip install capo-directory-service
Usage
from capo_directory_service import AsyncDirectoryServiceClient
async def main():
async with AsyncDirectoryServiceClient() as directory_service:
# Example: call the accept_shared_directory operation
response = await directory_service.accept_shared_directory()
print(response["shared_directory"])
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_directory_service import AsyncDirectoryServiceClient
async def main():
async with AsyncDirectoryServiceClient() as directory_service:
# Example: paginate over describe_client_authentication_settings
async for item in directory_service.iter_describe_client_authentication_settings():
print(item)
Error Handling
The SDK raises exceptions for errors returned by the API. Catch them to handle failures gracefully.
from capo_directory_service import AsyncDirectoryServiceClient
from capo_directory_service.error import ClientException
async def main():
async with AsyncDirectoryServiceClient() as directory_service:
try:
await directory_service.accept_shared_directory()
except ClientException 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_directory_service import AsyncDirectoryServiceClient
async def main():
async with AsyncDirectoryServiceClient() as directory_service:
# Default: 3 attempts for every operation
response = await directory_service.accept_shared_directory()
# Override per operation
response = await directory_service.accept_shared_directory(config_overrides={"retry_max_attempts": 5})
# Disable retries for this call
response = await directory_service.accept_shared_directory(config_overrides={"retry_max_attempts": 1})
Release files for capo-directory-service 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_directory_service-0.1.0.tar.gz | 198.2 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| capo_directory_service-0.1.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 756.6 kB
Release files / capo_directory_service-0.1.0.tar.gz
| Download URL | capo_directory_service-0.1.0.tar.gz |
|---|---|
| Size | 198.2 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
3d3c8f0f6dfeef4de7e4181cfa81416adf0cfa8a5f218d5d17fb21b24a7437fb
|
|
BLAKE2b-256 checksum How to use checksums |
9479b5df34089a3ce23b76e442a614f2c99955601ce1631929e6a8dcca3fd686
|
| 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_directory_service-0.1.0-py3-none-any.whl
| Download URL | capo_directory_service-0.1.0-py3-none-any.whl |
|---|---|
| Size | 558.4 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
8c6a3c6a55175fb80fd3c14523cd0fa4973eafbcdbc4e13aaaa93a4af611af7a
|
|
BLAKE2b-256 checksum How to use checksums |
a88648b375ce17ce4c1787f3a48a9a3c32268850ae0c3b3ab6e2fd1e6485b0f5
|
| 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}
|