gpt4 book ai didi

python - 如何使用boto读取S3上的二进制文件?

转载 作者:行者123 更新时间:2023-11-28 17:22:05 24 4
gpt4 key购买 nike

我在 S3 文件夹(私有(private)部分)中有一系列 Python 脚本/Excel 文件。如果它们是公开的,我可以通过 HTTP URL 读取它们。

想知道如何以二进制形式访问它们以执行它们?

 FileURL='URL of the File hosted in S3 Private folder'
exec(FileURL)
run(FileURL)

最佳答案

我不确定我是否理解您的问题,但这里是一个基于我对您问题的解释的答案。只要您知道您的bucket nameobject/key name,您就可以使用boto3(也可能使用boto,虽然我不确定):

#! /usr/bin/env python3
#
import boto3
from botocore.exceptions import ClientError

s3_bucket = 'myBucketName'
s3_key = 'myFileName' # Can be a nested key/file.
aws_profile = 'IAM-User-with-read-access-to-bucket-and-key'
aws_region = 'us-east-1'

aws_session = boto3.Session(profile_name = aws_profile)
s3_resource = aws_session.resource('s3', aws_region)
s3_object = s3_resource.Bucket(s3_bucket).Object(s3_key)

# In case nested key/file, get the leaf-name and use that as our local file name.
basename = s3_key.split('/')[-1].strip()
tmp_file = '/tmp/' + basename
try:
s3_object.download_file(tmp_file) # Not .download_fileobj()
except ClientError as e:
print("Received error: %s", e, exc_info=True)
print("e.response['Error']['Code']: %s", e.response['Error']['Code'])

顺便说一下,您可以从您的 PUBLIC URL 添加 Python 语句来从中解析出存储桶名称和键/对象名称。

希望对您有所帮助。

关于python - 如何使用boto读取S3上的二进制文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40955662/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com