我想从一个名为important
的特定标签的gmail提取所有电子邮件。我正在使用imaplib
和python 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")
推荐的实现方式是什么?
答案 0 :(得分:0)
m.select("important")
失败。
如果您想要特殊的加星标文件夹,则它可能名为“ [Gmail] /重要”。使用list()命令查找服务器使用的名称。