Parse Gmail with Python and mark all older than date as quot;readquot;(使用 Python 解析 Gmail 并将所有早于日期的内容标记为“已读)
问题描述
长话短说,我创建了一个新的 gmail 帐户,并将其他几个帐户关联到该帐户(每个帐户都有 1000 条消息),我正在导入这些帐户.所有导入的邮件都以未读的形式到达,但我需要它们显示为已读.
Long story short, I created a new gmail account, and linked several other accounts to it (each with 1000s of messages), which I am importing. All imported messages arrive as unread, but I need them to appear as read.
我对python有一点经验,但是我只使用过mail和imaplib模块来发送邮件,没有处理账户.
I have a little experience with python, but I've only used mail and imaplib modules for sending mail, not processing accounts.
有没有办法批量处理收件箱中的所有项目,并将早于指定日期的邮件标记为已读?
Is there a way to bulk process all items in an inbox, and simply mark messages older than a specified date as read?
推荐答案
typ, data = M.search(None, '(BEFORE 01-Jan-2009)')
for num in data[0].split():
M.store(num, '+FLAGS', '\Seen')
这是对 imaplib 文档页面中的代码的轻微修改存储方法.我从 RFC 3501 中找到了要使用的搜索条件.这应该可以帮助您入门.
This is a slight modification of the code in the imaplib doc page for the store method. I found the search criteria to use from RFC 3501. This should get you started.
这篇关于使用 Python 解析 Gmail 并将所有早于日期的内容标记为“已读"的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使用 Python 解析 Gmail 并将所有早于日期的内容标记为“已读"
基础教程推荐
- Dask.array.套用_沿_轴:由于额外的元素([1]),使用dask.array的每一行作为另一个函数的输入失败 2022-01-01
- 在 Python 中,如果我在一个“with"中返回.块,文件还会关闭吗? 2022-01-01
- 如何让 python 脚本监听来自另一个脚本的输入 2022-01-01
- 何时使用 os.name、sys.platform 或 platform.system? 2022-01-01
- 用于分类数据的跳跃记号标签 2022-01-01
- 使用PyInstaller后在Windows中打开可执行文件时出错 2022-01-01
- Python kivy 入口点 inflateRest2 无法定位 libpng16-16.dll 2022-01-01
- 如何在海运重新绘制中自定义标题和y标签 2022-01-01
- 线程时出现 msgbox 错误,GUI 块 2022-01-01
- 筛选NumPy数组 2022-01-01