Path to this page:
Subject: CVS commit: pkgsrc/devel/py-aws-error-utils
From: Amitai Schleier
Date: 2024-10-26 04:50:29
Message id: 20241026025029.EB97EFC7E@cvs.NetBSD.org
Log Message:
Add py-aws-error-utils: Error-handling functions for boto3/botocore
All AWS service exceptions are raised by boto3 as a
botocore.exceptions.ClientError, with the contents of the exception
indicating what kind of exception happened. This is not very pythonic,
and the contents themselves are rather opaque, most being held in dicts
rather than as properties. The functions in this package help dealing
with that, to make your code less verbose and require less memorization
of ClientError contents.
Files: