Getting Started
Installation
pip install capo-forecast
Usage
from capo_forecast import AsyncforecastClient
async def main():
async with AsyncforecastClient() as forecast:
# Example: call the create_auto_predictor operation
response = await forecast.create_auto_predictor()
print(response["predictor_arn"])
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_forecast import AsyncforecastClient
async def main():
async with AsyncforecastClient() as forecast:
# Example: paginate over list_dataset_groups
async for item in forecast.iter_list_dataset_groups():
print(item)
Error Handling
The SDK raises exceptions for errors returned by the API. Catch them to handle failures gracefully.
from capo_forecast import AsyncforecastClient
from capo_forecast.error import InvalidInputException
async def main():
async with AsyncforecastClient() as forecast:
try:
await forecast.create_auto_predictor()
except InvalidInputException 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_forecast import AsyncforecastClient
async def main():
async with AsyncforecastClient() as forecast:
# Default: 3 attempts for every operation
response = await forecast.create_auto_predictor()
# Override per operation
response = await forecast.create_auto_predictor(config_overrides={"retry_max_attempts": 5})
# Disable retries for this call
response = await forecast.create_auto_predictor(config_overrides={"retry_max_attempts": 1})
Release files for capo-forecast 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_forecast-0.1.0.tar.gz | 176.0 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| capo_forecast-0.1.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 615.2 kB
Release files / capo_forecast-0.1.0.tar.gz
| Download URL | capo_forecast-0.1.0.tar.gz |
|---|---|
| Size | 176.0 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
83b9021d92cb666d15cb1dec8152c19aa57df7f065133b9381312dc3cea372c9
|
|
BLAKE2b-256 checksum How to use checksums |
140f7e1fb616dede63a501c58173c711e3df943010df9ab14690bcbd85bf02f6
|
| 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_forecast-0.1.0-py3-none-any.whl
| Download URL | capo_forecast-0.1.0-py3-none-any.whl |
|---|---|
| Size | 439.2 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
3bfc3d1f1eff857696574c04b9482f35e6425c1bdcccbc3860290b903d44a62d
|
|
BLAKE2b-256 checksum How to use checksums |
4a9dc5e6d5bc4494f0b5ae8c5ea9a57333a94a647cd28e0232b2cc23727f6739
|
| 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}
|