本文介绍了使用Boto3将S3对象作为字符串打开的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我知道,使用Boto 2,可以使用以下命令以字符串形式打开S3对象: get_contents_as_string()
I'm aware that with Boto 2 it's possible to open an S3 object as a string with: get_contents_as_string()
boto3中是否有等效功能?
Is there an equivalent function in boto3 ?
推荐答案
read
将返回字节.至少对于Python 3,如果要返回字符串,则必须使用正确的编码进行解码:
read
will return bytes. At least for Python 3, if you want to return a string, you have to decode using the right encoding:
import boto3
s3 = boto3.resource('s3')
obj = s3.Object(bucket, key)
obj.get()['Body'].read().decode('utf-8')
这篇关于使用Boto3将S3对象作为字符串打开的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!