Created
January 21, 2025 13:37
-
-
Save vadimkantorov/836e4e2e0d23f1706dbd7e5154296c75 to your computer and use it in GitHub Desktop.
Extract all attachments from "*.eml" email files
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Usage: to extract all eml files in current directory into the current directory: python uneml.py *.eml | |
import os | |
import sys | |
import email | |
import email.policy | |
for input_path in sys.argv[1:]: | |
print('eml', repr(input_path)) | |
eml = email.message_from_file(open(input_path), policy = email.policy.default) | |
for part in eml.walk(): | |
for attachment in part.iter_attachments(): | |
if not attachment.get_filename(): | |
continue | |
output_filename = os.path.basename(input_path) + ' ' + attachment.get_filename() | |
print('img', repr(output_filename)) | |
with open(output_filename, 'wb') as f: | |
f.write(attachment.get_payload(decode = True)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment