vote up -1 vote down star

How do I use poplib, and download mails as message instances from email.Message class from email module in Python?

I am writing a program, which analyzes, all emails for specific information, storing parts of the message into a database. I can download the entire mail as text, howver walking through text searching for attachments is difficult.

idea is to parse messages for information

flag

25% accept rate
Do you also need to parse through the attachments (at least the text-type ones) as well, looking for 'specific information'? – mjv Nov 4 at 16:35
Yes! That's a goal. But immdly I need a way to scan main content! – ramdaz Nov 4 at 18:24

1 Answer

vote up 2 vote down

use the FeedParser class in the email.feedparser module to construct an email.Message object from the messages read from the server with poplib.

specifically:

import poplib
import email

pop = poplib.POP3( "server..." )
[establish connection, authenticate, ...]
raw = pop.retr( 1 )
pop.close()

parser = email.parser.FeedParser()
for line in raw[1]:
    parser.feed( str( line+b'\n', 'us-ascii' ) )
message = parser.close()
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.