eml_parser
eml_parser copied to clipboard
python eml parser module
Currently, when analyzing an email with eml_parser, the domains appearing in the body of the email are given in the output, like this: ``` "domain": [ "b2b.parallels.com", "click.parallels.com", "coronavirus.data.gov.uk" ],...
In `test_headeremail2list_2`, it mentions Python bug 27257. However, [Bug 27257](https://bugs.python.org/issue27257) appears to be related to empty groups in the header, not issues with obsolete period. With Python 3.7, I do...
If a CR or LF is found in a malformed email address header fields (From/To/etc.), the ValueError breaks the parsing. The following are the locations that have returned ValueErrors for...
Would it be possible to document what the output looks like for an email that has essentially everything (multipart, attachments, URLs, email addresses, IP addresses, etc.)? The current example in...