尝试自动从gmail帐户下载和存储附件。我有一个类似的脚本在工作-但是在V2上,我试图添加日志记录和文件重命名。除了日志记录/重新命名之外,我相信两个文件都是相同的,但是在此文件上,尝试搜索新邮件时失败。
try:
imapSession.select('[Gmail]/All Mail')
typ, data = imapSession.search(None, 'UNSEEN', 'ALL')
if typ != 'OK':
f = open('/home/pi/nahl/nahlmail/errorlog.csv', 'a+')
currentdate = time.strftime('%Y-%m-%d %H:%M:%S')
f.write('{0}, Error Searching Inbox\r\n'.currentdate)
f.close()