Typed, statically-importable exception classes for every AWS service
Project description
(Better) boto3 errors
Typed, statically-importable exception classes for every AWS service.
Install
pip install boto3-errors
Quick start
import boto3
from boto3_errors import patch_client
from boto3_errors.dynamodb import ConditionalCheckFailedException
client = boto3.client("dynamodb")
patch_client(client)
try:
client.put_item(
TableName="users",
Item={"pk": {"S": "user#1"}, "name": {"S": "Ada"}},
ConditionExpression="attribute_not_exists(pk)",
)
except ConditionalCheckFailedException as e:
print(e.message) # "The conditional request failed"
print(e.error_code) # "ConditionalCheckFailedException"
print(e.item) # {"pk": {"S": "user#1"}, "name": {"S": "Ada"}}
The problem
Every boto3 error comes back as a ClientError. The only way to distinguish them is by parsing e.response["Error"]["Code"] — a stringly-typed dict lookup with no autocomplete, no type checking, and no IDE support. A typo in the error code string won't be caught until it crashes.
What you get
All AWS services with exception classes auto-generated from botocore's service model.
Exception hierarchy
ClientError # botocore base — still works
└── Boto3Error # boto3-errors base
└── DynamoDBError # per-service base
├── ConditionalCheckFailedException
├── ResourceNotFoundException
├── TransactionCanceledException
└── ...
Every exception is a ClientError subclass, so existing except ClientError handlers keep working.
Built-in properties
Every Boto3Error exposes:
| Property | Type | Source |
|---|---|---|
message |
str |
Error.Message |
error_code |
str |
Error.Code |
http_status_code |
int |
ResponseMetadata.HTTPStatusCode |
request_id |
str |
ResponseMetadata.RequestId |
Service-specific properties
Some exceptions expose extra fields from the API response:
from boto3_errors.dynamodb import (
ConditionalCheckFailedException,
TransactionCanceledException,
)
# ConditionalCheckFailedException.item -> dict | None
# TransactionCanceledException.cancellation_reasons -> list | None
Project details
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 boto3_errors-0.5.0.tar.gz.
File metadata
- Download URL: boto3_errors-0.5.0.tar.gz
- Upload date:
- Size: 298.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.10.9 {"installer":{"name":"uv","version":"0.10.9","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 |
d504e47ed24507ced27181a33e66a60086c1388336827dad946048d252cb6745
|
|
| MD5 |
e91d032583bf7973ff5338e916d64e86
|
|
| BLAKE2b-256 |
af5fbe79c958c41235abf91cd4ff376d8de8885fb2bf1d0b0eea67b3abb238b0
|
File details
Details for the file boto3_errors-0.5.0-py3-none-any.whl.
File metadata
- Download URL: boto3_errors-0.5.0-py3-none-any.whl
- Upload date:
- Size: 550.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.10.9 {"installer":{"name":"uv","version":"0.10.9","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 |
7618fbd7d6f41bf080b55ba86d1790162c9c7eb9e684ce56a30365b661a3bd07
|
|
| MD5 |
2cf96d68ca41912b2008635f219cb463
|
|
| BLAKE2b-256 |
4c260dafd47ff3fee4cf6812618b7ce2a71860ecd1e6cb8dc2235652900bf1db
|