答案 0 :(得分:6)
你可以尝试这个
import imaplib
obj = imaplib.IMAP4_SSL('imap.gmail.com', 993)
obj.login('username', 'password')
obj.select('Inbox') <-- it will return total number of mail in Inbox i.e
('OK', ['50'])
obj.search(None,'UnSeen') <-- it will return the list of uids for Unseen mails
答案 1 :(得分:4)
答案 2 :(得分:3)
以Avadhesh的答案为基础:
#! /usr/bin/env python3.4
import getpass
import imaplib
mail = imaplib.IMAP4_SSL('imap.server.com')
mypassword = getpass.getpass("Password: ")
address = 'your@email.com'
mail.login(address, mypassword)
mail.select("inbox")
print("Checking for new e-mails for ",address,".", sep='')
typ, messageIDs = mail.search(None, "UNSEEN")
messageIDsString = str( messageIDs[0], encoding='utf8' )
listOfSplitStrings = messageIDsString.split(" ")
if len(listOfSplitStrings) == 0:
print("You have no new e-mails.")
elif len(listOfSplitStrings) == 1:
print("You have",len(listOfSplitStrings),"new e-mail.")
else:
print("You have",len(listOfSplitStrings),"new e-mails.")
答案 3 :(得分:1)
用于查找未读邮件的备用Gmail特定解决方案:
Gmail offers atom feeds for messages。例如:
https://mail.google.com/mail/feed/atom/(收件箱中的未读邮件) http://mail.google.com/mail/feed/atom/labelname/(labelname中的未读邮件) http://mail.google.com/mail/feed/atom/unread/(所有未读邮件)
因此,您可以使用优秀的feedparser库来获取Feed并计算条目。
现在我正在看它,但是,未读消息Feed似乎只返回最多20个条目,所以这可能有点限制。