Getting Started
Installation
pip install capo-deadline
Usage
from capo_deadline import AsyncdeadlineClient
async def main():
async with AsyncdeadlineClient() as deadline:
# Example: call the batch_get_job operation
response = await deadline.batch_get_job()
print(response["jobs"])
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_deadline import AsyncdeadlineClient
async def main():
async with AsyncdeadlineClient() as deadline:
# Example: paginate over get_sessions_statistics_aggregation
async for item in deadline.iter_get_sessions_statistics_aggregation():
print(item)
Error Handling
The SDK raises exceptions for errors returned by the API. Catch them to handle failures gracefully.
from capo_deadline import AsyncdeadlineClient
from capo_deadline.error import AccessDeniedException
async def main():
async with AsyncdeadlineClient() as deadline:
try:
await deadline.batch_get_job()
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_deadline import AsyncdeadlineClient
async def main():
async with AsyncdeadlineClient() as deadline:
# Default: 3 attempts for every operation
response = await deadline.batch_get_job()
# Override per operation
response = await deadline.batch_get_job(config_overrides={"retry_max_attempts": 5})
# Disable retries for this call
response = await deadline.batch_get_job(config_overrides={"retry_max_attempts": 1})
Release files for capo-deadline 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_deadline-0.1.0.tar.gz | 248.3 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| capo_deadline-0.1.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 1.1 MB
Release files / capo_deadline-0.1.0.tar.gz
| Download URL | capo_deadline-0.1.0.tar.gz |
|---|---|
| Size | 248.3 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
bb3d0e2a1c200e4de25b9975038ee7f3d01fa1cb205dafaaf996cad6bf3d4fcb
|
|
BLAKE2b-256 checksum How to use checksums |
c135e1e77d72748d8e7579afe537b23e9de6c505d7c6ca18857dd561140b3e73
|
| 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_deadline-0.1.0-py3-none-any.whl
| Download URL | capo_deadline-0.1.0-py3-none-any.whl |
|---|---|
| Size | 829.5 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
f743cd53c211d2f7436e21c096b3fa097a15e1bed41920451019acd0512e5f75
|
|
BLAKE2b-256 checksum How to use checksums |
3a0ba6129fcabfd162a3519e5c8ba8cdbb82c42a07bacb8b58efbd47e86bb010
|
| 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}
|