从特定标签的Gmail收集所有电子邮件

问题描述 投票:1回答:1

我想从一个名为important的特定标签的gmail中获取所有电子邮件。我正在使用imaplibpython 2

以下是我的代码,

import email, getpass, imaplib, os

detach_dir = '.' 
user = raw_input("Enter your GMail username:")
pwd = getpass.getpass("Enter your password: ")



# connecting to the gmail imap server
m = imaplib.IMAP4_SSL("imap.gmail.com")
m.login(user,pwd)

m.select("important") 

resp, items = m.search(None, "ALL")

items = items[0].split() 

print len(items)

for emailid in items:
    resp, data = m.fetch(emailid, "(RFC822)")
    email_body = data[0][1] 
    mail = email.message_from_string(email_body) 


    if mail.get_content_maintype() != 'multipart':
        continue

    print "["+mail["From"]+"] :" + mail["Subject"]


    for part in mail.walk():

        if part.get_content_maintype() == 'multipart':
            continue


        if part.get('Content-Disposition') is None:
            continue



        filename = mail["From"] + "_hw1answer"

        att_path = os.path.join(detach_dir, filename)


        if not os.path.isfile(att_path) :

            fp = open(att_path, 'wb')
            fp.write(part.get_payload(decode=True))
            fp.close()

错误显示,

imaplib.error: command SEARCH illegal in state AUTH, only allowed in states SELECTED

但是,如果我使用INBOX,那么它正在工作。

m.select("inbox")工作

推荐的方法是什么?

python imaplib
1个回答
0
投票

m.select("important")失败了。

如果您需要特殊加星标的文件夹,则可能将其命名为“[Gmail] /重要”。使用list()命令查找服务器使用的名称。

© www.soinside.com 2019 - 2024. All rights reserved.