catching exceptions from boto3

0

I'm coding a script to upload data to s3 and I'm wondering how I know what exceptions to catch. I've seen the documentation here (https://boto3.amazonaws.com/v1/documentation/api/latest/guide/error-handling.html), but now I'm getting an botocore.exceptions.EndpointConnectionError. How do I know I am catching all the exceptions for boto3 that I need to catch? Please don't tell me it's trial and error.

feita há 2 anos5260 visualizações
2 Respostas
1
Resposta aceita

The S3 API guide provides all possible error responses thrown by the S3 service. Additionally, the Python package aws-error-utils can streamline some of the error handling in boto3.

lurch
respondido há 2 anos
  • Thanks. I'll try and reproduce the problem with that aws_error_utils package being used. I'll see if that helps. Thanks.

1

You could try to catch ClientError and then parse the error response, for example,

import boto3, botocore.exceptions

s3 = boto3.client('s3')
try:
    s3.get_object(Bucket='some-bucket', Key='some key')
except botocore.exceptions.ClientError as error:
    if error.response['Error']['Code'] == 'NoSuchKey':
        print('No such object')
    else: # Unknown exception
        print(error.response)
RoB
respondido há 2 anos
  • Oh. Would that ClientError under botocore.exceptions catch a EndpointConnectionError? This job runs for a day or two so it takes a while to reproduce.

  • @jschwar313 You can generate a list of the statically defined botocore exceptions using the following code (taken from boto3 docs

    import botocore.exceptions
    
    for key, value in sorted(botocore.exceptions.__dict__.items()):
        if isinstance(value, type):
            print(key)
    

Você não está conectado. Fazer login para postar uma resposta.

Uma boa resposta responde claramente à pergunta, dá feedback construtivo e incentiva o crescimento profissional de quem perguntou.

Diretrizes para responder a perguntas