Yes. Your credentials are used to sign all requests you sent, so you need to configure the client so that it does not perform the signing step at all. You can do it as follows:
import boto3 from botocore import UNSIGNED from botocore.client import Config s3 = boto3.client('s3', config=Config(signature_version=UNSIGNED))
source share