这是我的工作脚本,它生成一个绘图,将其本地保存到磁盘,上载到S3并删除文件:

plt.figure(figsize=(6,6))
plt.plot(x, y, 'bo')
plt.savefig('file_location')

conn = boto.s3.connect_to_region(
    region_name=AWS_REGION,
    aws_access_key_id=AWS_ACCESS_KEY_ID,
    aws_secret_access_key=AWS_SECRET_ACCESS_KEY,
    calling_format=boto.s3.connection.OrdinaryCallingFormat()
    )
bucket = conn.get_bucket('bucket_name')
k = Key(bucket)
k.key = 'file_name'
k.set_contents_from_filename('file_location')

os.remove(file_location)

我想要的是跳过磁盘写入,直接从内存中上传绘图。
有什么关于如何做到这一点的建议吗?

最佳答案

把它们放在一起:

img_data = io.BytesIO()
plt.savefig(img_data, format='png')
img_data.seek(0)

s3 = boto3.resource('s3')
bucket = s3.Bucket(BUCKET_NAME)
bucket.put_object(Body=img_data, ContentType='image/png', Key=KEY)

感谢@padraic cunningham和@guyb7提供的提示!

关于python - python - 使用matplotlib和boto将内存上传到s3,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/31485660/

10-12 02:09
查看更多