使用 Python 检查未读的 Gmail 邮件数
问题描述
如何使用简短的 Python 脚本检查收件箱中未读 Gmail 邮件的数量?从文件中检索密码的奖励积分.
How can I check the number of unread Gmail message in my inbox with a short Python script? Bonus points for retrieving the password from a file.
解决方案
import imaplib
obj = imaplib.IMAP4_SSL('imap.gmail.com','993')
obj.login('username','password')
obj.select()
obj.search(None,'UnSeen')
相关文章