├── .github └── workflows │ └── pypi.yaml ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTORS.md ├── LICENSE ├── README.md ├── aws_error_utils ├── __init__.py ├── aws_error_utils.py └── py.typed ├── pyproject.toml └── test_aws_error_utils.py /.github/workflows/pypi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkehoe/aws-error-utils/HEAD/.github/workflows/pypi.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkehoe/aws-error-utils/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkehoe/aws-error-utils/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkehoe/aws-error-utils/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkehoe/aws-error-utils/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkehoe/aws-error-utils/HEAD/README.md -------------------------------------------------------------------------------- /aws_error_utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkehoe/aws-error-utils/HEAD/aws_error_utils/__init__.py -------------------------------------------------------------------------------- /aws_error_utils/aws_error_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkehoe/aws-error-utils/HEAD/aws_error_utils/aws_error_utils.py -------------------------------------------------------------------------------- /aws_error_utils/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkehoe/aws-error-utils/HEAD/pyproject.toml -------------------------------------------------------------------------------- /test_aws_error_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkehoe/aws-error-utils/HEAD/test_aws_error_utils.py --------------------------------------------------------------------------------