Getting Started
Installation
pip install capo-glue
Usage
from capo_glue import AsyncGlueClient
async def main():
async with AsyncGlueClient() as glue:
# Example: call the batch_create_partition operation
response = await glue.batch_create_partition()
print(response["errors"])
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_glue import AsyncGlueClient
async def main():
async with AsyncGlueClient() as glue:
# Example: paginate over describe_entity
async for item in glue.iter_describe_entity():
print(item)
Error Handling
The SDK raises exceptions for errors returned by the API. Catch them to handle failures gracefully.
from capo_glue import AsyncGlueClient
from capo_glue.error import AlreadyExistsException
async def main():
async with AsyncGlueClient() as glue:
try:
await glue.batch_create_partition()
except AlreadyExistsException 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_glue import AsyncGlueClient
async def main():
async with AsyncGlueClient() as glue:
# Default: 3 attempts for every operation
response = await glue.batch_create_partition()
# Override per operation
response = await glue.batch_create_partition(config_overrides={"retry_max_attempts": 5})
# Disable retries for this call
response = await glue.batch_create_partition(config_overrides={"retry_max_attempts": 1})
Release files for capo-glue 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_glue-0.1.0.tar.gz | 713.3 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| capo_glue-0.1.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 2.7 MB
Release files / capo_glue-0.1.0.tar.gz
| Download URL | capo_glue-0.1.0.tar.gz |
|---|---|
| Size | 713.3 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
52c4199e4c359d1482773e35a84255f4f8875a297ae906f40640b936618560cb
|
|
BLAKE2b-256 checksum How to use checksums |
abfd9945d287b786416a137ac0474ac7655775709c6e5746964d6ebc38275a8f
|
| 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_glue-0.1.0-py3-none-any.whl
| Download URL | capo_glue-0.1.0-py3-none-any.whl |
|---|---|
| Size | 2.0 MB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
ef4e518a6149655891f76f009ecd53896411645f5f3f5366d9e0868caf2aaf3c
|
|
BLAKE2b-256 checksum How to use checksums |
762746408d542c4fe3fce06e4f532299f85fa8715affbba24893dda96f7a8b68
|
| 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}
|