Lorsque j'accède au HTML téléchargé par boto3, qui est une bibliothèque pour jouer avec aws, cela devient un téléchargement de fichier.
import boto3
s3 = boto3.resource('s3')
s3.Bucket(<<bucket_name>>).upload_file(
'nom de fichier',
'nom de fichier',
ExtraArgs={'ContentType': 'text/html', 'ACL': 'public-read'})
Spécifiez ContentType text / html avec ExtraArgs.
Recommended Posts