I kept following JSON in S3 bucket \'test\'
{ \'Details\' : \"Something\" }
I am using following code to read this JSON and printing the
Wanted to add that the botocore.response.streamingbody works well with json.load:
botocore.response.streamingbody
json.load
import json import boto3 s3 = boto3.resource('s3') obj = s3.Object(bucket, key) data = json.load(obj.get()['Body'])