gpt4 book ai didi

python - 如何使用 Python 在不接触附件的情况下有效地解析电子邮件

转载 作者:太空狗 更新时间:2023-10-29 21:44:45 26 4
gpt4 key购买 nike

我正在使用 Python imaplib (Python 2.6) 从 GMail 获取电子邮件。我使用方法 http://docs.python.org/library/imaplib.html#imaplib.IMAP4.fetch 获取电子邮件的所有内容我收到整封电子邮件。我只需要文本部分,还需要解析附件的名称,而无需下载它们。如何做到这一点?我看到 GMail 返回的电子邮件遵循浏览器发送到 HTTP 服务器的相同格式。

最佳答案

看看这个食谱:http://code.activestate.com/recipes/498189/

我稍微调整了一下,打印发件人、主题、日期、附件名称和邮件正文(目前只是纯文本——添加 html 邮件很简单)。

在本例中我使用了 Gmail pop3 服务器,但它应该也适用于 IMAP。

import poplib, email, string

mailserver = poplib.POP3_SSL('pop.gmail.com')
mailserver.user('recent:YOURUSERNAME') #use 'recent mode'
mailserver.pass_('YOURPASSWORD') #consider not storing in plaintext!

numMessages = len(mailserver.list()[1])
for i in reversed(range(numMessages)):
message = ""
msg = mailserver.retr(i+1)
str = string.join(msg[1], "\n")
mail = email.message_from_string(str)

message += "From: " + mail["From"] + "\n"
message += "Subject: " + mail["Subject"] + "\n"
message += "Date: " + mail["Date"] + "\n"

for part in mail.walk():
if part.is_multipart():
continue
if part.get_content_type() == 'text/plain':
body = "\n" + part.get_payload() + "\n"
dtypes = part.get_params(None, 'Content-Disposition')
if not dtypes:
if part.get_content_type() == 'text/plain':
continue
ctypes = part.get_params()
if not ctypes:
continue
for key,val in ctypes:
if key.lower() == 'name':
message += "Attachment:" + val + "\n"
break
else:
continue
else:
attachment,filename = None,None
for key,val in dtypes:
key = key.lower()
if key == 'filename':
filename = val
if key == 'attachment':
attachment = 1
if not attachment:
continue
message += "Attachment:" + filename + "\n"
if body:
message += body + "\n"
print message
print

这应该足以让您朝着正确的方向前进。

关于python - 如何使用 Python 在不接触附件的情况下有效地解析电子邮件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2301213/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com