这是我的代码:
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)
从此我收到错误消息:
TypeError: initial_value must be str or none, not bytes
我正在使用python 3,它显然会自动解码。那么为什么我仍然收到此错误消息?
答案 0 :(得分:9)
您可以尝试:
header_data = data[1][0][1].decode('utf-8')
答案 1 :(得分:6)
我建议这样做,(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"]
答案 2 :(得分:0)
在这种情况下,您可能想要使用BytesHeaderParser。