Created
May 6, 2022 16:13
-
-
Save gdm/6cd9c5477d61e4f86acabf8b2b12ef8d to your computer and use it in GitHub Desktop.
Decode email format (MIME quoted printable)
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
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