Skip to content

Instantly share code, notes, and snippets.

@vadimkantorov
Created January 21, 2025 13:37
Show Gist options
  • Save vadimkantorov/836e4e2e0d23f1706dbd7e5154296c75 to your computer and use it in GitHub Desktop.
Save vadimkantorov/836e4e2e0d23f1706dbd7e5154296c75 to your computer and use it in GitHub Desktop.
Extract all attachments from "*.eml" email files
# 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