Answers for "how to read json file from s3 bucket into aws glue job"

0

how to read json file from s3 bucket into aws glue job

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]')
Posted by: Guest on July-21-2021

Code answers related to "how to read json file from s3 bucket into aws glue job"

Python Answers by Framework

Browse Popular Code Answers by Language