Wenn ich auf das von boto3 hochgeladene HTML zugreife, das eine Bibliothek zum Spielen mit aws ist, wird es zum Herunterladen von Dateien.
import boto3
s3 = boto3.resource('s3')
s3.Bucket(<<bucket_name>>).upload_file(
'Dateiname',
'Dateiname',
ExtraArgs={'ContentType': 'text/html', 'ACL': 'public-read'})
Geben Sie ContentType text / html mit ExtraArgs an.
Recommended Posts