Hi everyone,
Iām having an issue when trying to connect to my AWS S3 bucket from my local Python environment using the boto3 library.
import boto3
s3 = boto3.client('s3')
response = s3.list_objects_v2(Bucket='my-bucket-name')
print(response)
I keep getting the following error:
botocore.exceptions.SSLError: Can't connect to HTTPS URL because the SSL module is not available.
Iāve already set up my AWS credentials using aws configure, but this error persists. Iām not sure if itās an issue with my Python setup or something else.
Has anyone encountered this error before? Any ideas on how I can resolve it?
Thanks so much for your help!