TypeError: initial_value must be str or none, not

2019-02-20 17:46发布

问题:

Here is my code:

import imaplib
from email.parser import HeaderParser
conn = imaplib.IMAP4_SSL('imap.gmail.com')
conn.login('example@gmail.com', 'password')
conn.select()
conn.search(None, 'ALL')
data = conn.fetch('1', '(BODY[HEADER])')
header_data = data[1][0][1]
parser = HeaderParser()
msg = parser.parsestr(header_data)

From this i get the error message:

TypeError: initial_value must be str or none, not bytes

Im using python 3 which apparently automatically decodes. So why am i still getting this error message?

回答1:

You can try:

header_data = data[1][0][1].decode('utf-8')


回答2:

I would suggest do this,(Python 3)

typ, data = conn.fetch('1', '(RFC822)') # will read the first email
email_content = data[0][1] 
msg = email.message_from_bytes(email_content) # this needs to be corrected in your case 
emailDate =  msg["Date"]
emaiSubject = msg["Subject"]


回答3:

You probably want to use a BytesHeaderParser in this case.