I need to tokenize an email using python Means, I need the headers, the text, each and everything to be stored in some different variable. Currently I am trying to do it with this email class of python Please let me know how to do it even if you know with email class

Thank you Regards, Puneet

link|improve this question

1  
In what way do the supplied documentation and examples not help you? – Duncan Dec 17 '11 at 12:52
I am trying to understand them for now – Puneet Dec 17 '11 at 19:28
feedback

1 Answer

up vote 0 down vote accepted

Look in the standard python library documentation for the email package

Use email.parser.Parser.parse function to return a email.message.Message object that has the headers in a dictionary like representation

link|improve this answer
Yeah, I had seen that. But I am just figuring about what to do with this obj. I have extracted out payload, made an email generator, degenerator object till now – Puneet Dec 17 '11 at 16:53
feedback

Your Answer

 
or
required, but never shown

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