Getting Started
Installation
pip install capo-internetmonitor
Usage
from capo_internetmonitor import AsyncInternetMonitorClient
async def main():
async with AsyncInternetMonitorClient() as internet_monitor:
# Example: call the list_tags_for_resource operation
response = await internet_monitor.list_tags_for_resource()
print(response["tags"])
Error Handling
The SDK raises exceptions for errors returned by the API. Catch them to handle failures gracefully.
from capo_internetmonitor import AsyncInternetMonitorClient
from capo_internetmonitor.error import AccessDeniedException
async def main():
async with AsyncInternetMonitorClient() as internet_monitor:
try:
await internet_monitor.list_tags_for_resource()
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_internetmonitor import AsyncInternetMonitorClient
async def main():
async with AsyncInternetMonitorClient() as internet_monitor:
# Default: 3 attempts for every operation
response = await internet_monitor.list_tags_for_resource()
# Override per operation
response = await internet_monitor.list_tags_for_resource(config_overrides={"retry_max_attempts": 5})
# Disable retries for this call
response = await internet_monitor.list_tags_for_resource(config_overrides={"retry_max_attempts": 1})
Release files for capo-internetmonitor 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_internetmonitor-0.1.0.tar.gz | 83.9 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| capo_internetmonitor-0.1.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 245.0 kB
Release files / capo_internetmonitor-0.1.0.tar.gz
| Download URL | capo_internetmonitor-0.1.0.tar.gz |
|---|---|
| Size | 83.9 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
8758082ff176d9611f6fddbc3d6be8929fea8bea802beeb2c252a391e1a249b3
|
|
BLAKE2b-256 checksum How to use checksums |
8818f601789b2c2a549ded9e8b196ab8a419074c3c892b2fcfe7f1986aba55fe
|
| 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_internetmonitor-0.1.0-py3-none-any.whl
| Download URL | capo_internetmonitor-0.1.0-py3-none-any.whl |
|---|---|
| Size | 161.2 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
fa67c70d25cb9ce933f679430334b1043ea2c221c2de71418e1751dde0cc079b
|
|
BLAKE2b-256 checksum How to use checksums |
96cd1aded7d2f6c6fe68c67049b706738f913f0e6c44e2b15abc73f832b14d7f
|
| 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}
|