I\'m aware that with Boto 2 it\'s possible to open an S3 object as a string with: get_contents_as_string()
Is there an equivalent function in boto3 ?
If body contains a io.StringIO, you have to do like below:
object.get()['Body'].getvalue()