📜  如何将 s3 存储桶中的 json 文件读取到 aws 胶水作业中 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:44.703000             🧑  作者: Mango

代码示例1
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]')