This is my boto3 command to get an object with a specific key from an S3 bucket:
resp = s3client.get_object(Bucket='<>-<>', Key='MzA1MjY1NzkzX2QudHh0')
It produces the following error:
botocore.errorfactory.NoSuchKey: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.
I checked in the bucket and the key really exists

Am I missing something or did something wrong?
source
share