Skip to content

Instantly share code, notes, and snippets.

@gdm
Created May 6, 2022 16:13
Show Gist options
  • Save gdm/6cd9c5477d61e4f86acabf8b2b12ef8d to your computer and use it in GitHub Desktop.
Save gdm/6cd9c5477d61e4f86acabf8b2b12ef8d to your computer and use it in GitHub Desktop.
Decode email format (MIME quoted printable)
from email.parser import Parser
import quopri
def decode_email(msg_str):
p = Parser()
message = p.parsestr(msg_str)
decoded_message = ''
for part in message.walk():
charset = part.get_content_charset()
if part.get_content_type() == 'text/plain':
part_str = part.get_payload(decode=1)
decoded_message += part_str.decode(charset)
return decoded_message
file = open("sample2.txt")
msg = file.read()
file.close()
decoded_string = quopri.decodestring(msg)
print(decoded_string.decode('utf-8'))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment