Für den Zugriff auf S3 wird eine Bibliothek namens boto3 verwendet. Der Dateityp wird mit libmagic im MIME-Format abgerufen.
Installieren Sie zunächst die Bibliotheken:
$ brew install libmagic
$ pip install python-magic
$ pip install boto3
Dann das Skript:
#Präfix des Zieldateipfads
key_prefix = 'uploads/'
#Muster des Zieldateinamens
key_pattern = 'uploads/\d+/images/.*'
#Temporärer Dateiname zum Download
temporary_filename = '/tmp/downloaded_file'
for s3_object in bucket.objects.filter(Prefix=key_prefix):
if not re.match(key_pattern, s3_object.key):
continue
s3_object.Object().download_file(temporary_filename)
mime_type = magic.from_file(temporary_filename, mime=True)
print("{}: {}".format(s3_object.key, mime_type)
Recommended Posts