2

我正在使用 Python 的imapclient,我需要能够搜索多个操作数。例如,假设我想查看 2018 年 1 月 6 日或 2018 年 1 月 13 日发送的消息。我查看了具有多个 OR 的 IMAP 标准,并在https://www.limilabs.com/blog/imap-搜索需要括号

使用最后参考的提示,我尝试过:

*r_data = M.search(['OR SENTON "6-Jan-2018"  SENTON "13-Jan-2018"'])
r_data = M.search('OR SENTON "6-Jan-2018"  SENTON "13-Jan-2018"')
r_data = M.search('SENTON "6-Jan-2018" OR SENTON "13-Jan-2018"')*

和其他几个。每次我得到:

*imaplib.error: UID command error: BAD ['Command Argument Error. 11']*

我真的宁愿不必深入研究imapclient代码来弄清楚如何构造这个请求。有没有人有什么建议?

4

2 回答 2

1

我遇到了同样的问题。发现解决方案是(基于源代码中的注释):

r_data = M.search(['OR', 'SENTON', '6-Jan-2018', 'SENTON', '13-Jan-2018'])

或者甚至更好:

r_data = M.search(['OR', 'SENTON', date(2018, 1, 6), 'SENTON', date(2018, 1, 13)])

也适用于更复杂的查询,例如:

M.search(['OR', 'OR', 'FROM', 'a', 'FROM', 'b', 'FROM', 'c'])
于 2018-11-29T18:21:22.077 回答
1

尝试使用查询生成器:

import datetime as dt
from imap_tools import AND, OR, NOT, Q, H   

# date not in the date list (NOT(date=date1 OR date=date3 OR date=date2))
q2 = NOT(OR(date=[dt.date(2019, 10, 1), dt.date(2019, 10, 10), dt.date(2019, 10, 15)]))
# "NOT ((OR OR ON 1-Oct-2019 ON 10-Oct-2019 ON 15-Oct-2019))"

imap 工具

于 2019-11-11T17:34:03.383 回答