Getting Started
Installation
pip install capo-invoicing
Usage
from capo_invoicing import AsyncInvoicingClient
async def main():
async with AsyncInvoicingClient() as invoicing:
# Example: call the batch_get_invoice_profile operation
response = await invoicing.batch_get_invoice_profile()
print(response["profiles"])
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_invoicing import AsyncInvoicingClient
async def main():
async with AsyncInvoicingClient() as invoicing:
# Example: paginate over list_invoice_summaries
async for item in invoicing.iter_list_invoice_summaries():
print(item)
Error Handling
The SDK raises exceptions for errors returned by the API. Catch them to handle failures gracefully.
from capo_invoicing import AsyncInvoicingClient
from capo_invoicing.error import AccessDeniedException
async def main():
async with AsyncInvoicingClient() as invoicing:
try:
await invoicing.batch_get_invoice_profile()
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_invoicing import AsyncInvoicingClient
async def main():
async with AsyncInvoicingClient() as invoicing:
# Default: 3 attempts for every operation
response = await invoicing.batch_get_invoice_profile()
# Override per operation
response = await invoicing.batch_get_invoice_profile(config_overrides={"retry_max_attempts": 5})
# Disable retries for this call
response = await invoicing.batch_get_invoice_profile(config_overrides={"retry_max_attempts": 1})
Release files for capo-invoicing 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_invoicing-0.1.0.tar.gz | 97.1 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| capo_invoicing-0.1.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 289.8 kB
Release files / capo_invoicing-0.1.0.tar.gz
| Download URL | capo_invoicing-0.1.0.tar.gz |
|---|---|
| Size | 97.1 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
cceb0cb79b6ac80901a2e70f6717aa2d33900e7f055b6c6dc3f330a122f12be1
|
|
BLAKE2b-256 checksum How to use checksums |
f1166f128c767c39e3ea1febcae3b18b0669939d2e1ff496bb3cbc2b6680e6c4
|
| 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_invoicing-0.1.0-py3-none-any.whl
| Download URL | capo_invoicing-0.1.0-py3-none-any.whl |
|---|---|
| Size | 192.7 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
abc6a5febfc4228ecf6d318df515b6cafebdd5983c59fbf7f046fd685789e8a0
|
|
BLAKE2b-256 checksum How to use checksums |
90d09abbd82ce8ecdde60e1b099b04916fe63387954624d323dc2d6d9659f583
|
| 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}
|