Getting Started
Installation
pip install capo-bedrock-agentcore
Usage
from capo_bedrock_agentcore import AsyncBedrockAgentCoreClient
async def main():
async with AsyncBedrockAgentCoreClient() as bedrock_agent_core:
# Example: call the complete_resource_token_auth operation
response = await bedrock_agent_core.complete_resource_token_auth()
print(response)
Error Handling
The SDK raises exceptions for errors returned by the API. Catch them to handle failures gracefully.
from capo_bedrock_agentcore import AsyncBedrockAgentCoreClient
from capo_bedrock_agentcore.error import AccessDeniedException
async def main():
async with AsyncBedrockAgentCoreClient() as bedrock_agent_core:
try:
await bedrock_agent_core.complete_resource_token_auth()
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_bedrock_agentcore import AsyncBedrockAgentCoreClient
async def main():
async with AsyncBedrockAgentCoreClient() as bedrock_agent_core:
# Default: 3 attempts for every operation
response = await bedrock_agent_core.complete_resource_token_auth()
# Override per operation
response = await bedrock_agent_core.complete_resource_token_auth(config_overrides={"retry_max_attempts": 5})
# Disable retries for this call
response = await bedrock_agent_core.complete_resource_token_auth(config_overrides={"retry_max_attempts": 1})
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file capo_bedrock_agentcore-0.1.0.tar.gz.
File metadata
- Download URL: capo_bedrock_agentcore-0.1.0.tar.gz
- Upload date:
- Size: 245.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bc6b49a4152e883735bd92fd58a932c72d6ce9feb7673ac07daf6e2b47626480
|
|
| MD5 |
ff8845053c162bc18f5e10654c85fb13
|
|
| BLAKE2b-256 |
8943dca8ba2501e8db162c19f67620c2bac25fe74af6c74aeba8411891baa3a3
|
File details
Details for the file capo_bedrock_agentcore-0.1.0-py3-none-any.whl.
File metadata
- Download URL: capo_bedrock_agentcore-0.1.0-py3-none-any.whl
- Upload date:
- Size: 687.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ad6e6ad04cef32629af0d8035f250775f47251f474974a090bcefb4af7a64b68
|
|
| MD5 |
03c4c1b31c26b743e1ad1773b6291370
|
|
| BLAKE2b-256 |
146ea78767d453c70a71b51ae17d1f31d7b5378beba147436aade21781cb3667
|