我正在使用.csv文件制作一个伪数据库。本质上,我想做的是启动代码时,打开.csv文件,并将所有值读入数组tempDB
,然后进入无限循环以例行检查是否有特定电子邮件主题已经出现。在循环的每次迭代中,我都打开一个.csv编写器。然后,我连接到Gmail,并搜索与主题匹配的未读电子邮件。解析日期时间,这是用来检查此脚本之前是否已阅读过电子邮件的方法。我遍历数组,检查新的日期时间字符串是否与.csv文件(由tempDB
包含)中的任何内容匹配。如果日期时间字符串与tempDB
数组中的任何内容都不匹配,那么我将执行某些操作。之所以以这种方式跟踪电子邮件,而不是通过将此脚本将电子邮件设置为read
的原因,是因为我有另一个程序可以较慢的时间间隔与相同的电子邮件进行交互。我希望此代码能够忽略已被此代码看到的电子邮件,但对于我的其他应用程序,则可以将电子邮件标记为已读。下面是我的代码:
import imaplib, time, email, mailbox, datetime, csv
server = "imap.gmail.com"
port = 993
user = "Redacted"
password = "Redacted"
def main():
tempDB = []
infile = open('MsgDB.csv' 'r')
reader = csv.reader(infile)
for row in reader:
if any(row):
tempDB.append(row)
infile.close()
while True:
found = False
outfile = open('MsgDB.csv', 'w', newline='')
writer = csv.writer(outfile)
conn = imaplib.IMAP4_SSL(server, port)
conn.login(user, password)
conn.select('inbox', readonly=True)
result, data = conn.search(None, '(UNSEEN SUBJECT "Test Subject")')
i = len(data[0].split())
for x in range(i):
latest_email_uid = data[0].split()[x]
result, email_data = conn.uid('fetch', latest_email_uid, '(RFC822)')
raw_email = email_data[0][1]
raw_email_string = raw_email.decode('utf-8')
email_message = email.message_from_string(raw_email_string)
date_tuple = email.utils.parsedate_tz(email_message['Date'])
local_date = datetime.datetime.fromtimestamp(email.utils.mktime_tz(date_tuple))
local_message_date = "%s" %(str(local_date.strftime("%a, %d %b %Y %H:%M:%S")))
for i in range(len(tempDB)):
if tempDB[i] == local_message_date:
print("Item Found")
found = True
continue
else:
print("Writing to file...")
tempDB.append(local_message_date)
writer.writerow([local_message_date])
for part in email_message.walk():
if part.get_content_type() == "text/plain" and found != True:
#DO THE THING
else:
continue
outfile.close()
time.sleep(30)
if __name__ == "__main__":
main()
从我所看到的核心问题是,从未写入过csv文件,也从未将tempDB附加到该文件。您会注意到,我已经为Item Found
和Writing to file...
放置了调试打印语句。但是,这些都没有打印,这表明循环很可能被完全跳过了。但是,我确实打印了Local Message Date
和TempDB
,它们总是打印与主题匹配的最新消息,并且TempDB始终为空。此外,确实发生了#DO THE THING
中发生的动作。问题是,即使它已经被写入此脚本已读取的.csv文件,它仍将使用相同的电子邮件。我在这里做错了什么?预先谢谢你!
答案 0 :(得分:0)
事实证明,该文件为空并非事实。我尝试插入一个哑数值,并对其进行了修复。它不能完美运行,因为同一条目不断添加到.csv文件中,但是此问题本身已解决。