So lesen Sie die JSON -Datei von S3 Bucket in AWS -Kleberjob

import boto3

s3 = boto3.client('s3')
#bucket name with out the leading s3://
data = s3.get_object(Bucket='[bucket name]', Key='[file path after bucket name]')
Shy Seal