Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要即时生成 HTML 文件并将它们保存到存储桶的选定文件夹并收到 url。
我已经看到上传文件 boto但是我想在 amazon s3 上动态生成 HTML 字符串文件而不实际将文件保存到我的本地计算机。
我怎样才能做到这一点?
您引用的示例使用set_contents_from_filenameKey 对象的方法将内容从本地文件上传到 S3。或者,您可以使用set_contents_from_stringKey 对象的方法从生成的 HTML 字符串上传内容。第一个参数是要上传的字符串,而不是文件的路径。
set_contents_from_filename
set_contents_from_string