Getting Started
Installation
pip install capo-devops-guru
Usage
from capo_devops_guru import AsyncDevOpsGuruClient
async def main():
async with AsyncDevOpsGuruClient() as dev_ops_guru:
# Example: call the add_notification_channel operation
response = await dev_ops_guru.add_notification_channel()
print(response["id"])
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_devops_guru import AsyncDevOpsGuruClient
async def main():
async with AsyncDevOpsGuruClient() as dev_ops_guru:
# Example: paginate over describe_organization_resource_collection_health
async for item in dev_ops_guru.iter_describe_organization_resource_collection_health():
print(item)
Error Handling
The SDK raises exceptions for errors returned by the API. Catch them to handle failures gracefully.
from capo_devops_guru import AsyncDevOpsGuruClient
from capo_devops_guru.error import AccessDeniedException
async def main():
async with AsyncDevOpsGuruClient() as dev_ops_guru:
try:
await dev_ops_guru.add_notification_channel()
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_devops_guru import AsyncDevOpsGuruClient
async def main():
async with AsyncDevOpsGuruClient() as dev_ops_guru:
# Default: 3 attempts for every operation
response = await dev_ops_guru.add_notification_channel()
# Override per operation
response = await dev_ops_guru.add_notification_channel(config_overrides={"retry_max_attempts": 5})
# Disable retries for this call
response = await dev_ops_guru.add_notification_channel(config_overrides={"retry_max_attempts": 1})
Release files for capo-devops-guru 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_devops_guru-0.1.0.tar.gz | 132.4 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| capo_devops_guru-0.1.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 481.4 kB
Release files / capo_devops_guru-0.1.0.tar.gz
| Download URL | capo_devops_guru-0.1.0.tar.gz |
|---|---|
| Size | 132.4 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
e7fc27bf0f9efd8e1f0a17eefee9d588e95b66d5aff25b6108bd70d28446bf36
|
|
BLAKE2b-256 checksum How to use checksums |
bc0da0d6584810f144ab94bd3a2b43c74880c95ba2610f502ded2ce74c0b8286
|
| 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_devops_guru-0.1.0-py3-none-any.whl
| Download URL | capo_devops_guru-0.1.0-py3-none-any.whl |
|---|---|
| Size | 349.0 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
6285a70ea09cdf1bf9acbaf349ba90590c7fee11604755ff03d13095f8bf2b2c
|
|
BLAKE2b-256 checksum How to use checksums |
ed47bc0a52db055ace4b990e27fedf97aaca0a9b7724661c5af79e12b4909def
|
| 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}
|