用法:
IMAP4.search(charset, criterion[, ...])
在邮箱中搜索匹配的邮件。
charset
可能是None
,在这种情况下,不会在对服务器的请求中指定CHARSET
。 IMAP 协议要求至少指定一个标准;当服务器返回错误时将引发异常。如果使用enable()
命令启用了UTF8=ACCEPT
函数,则charset
必须为None
。例子:
# M is a connected IMAP4 instance... typ, msgnums = M.search(None, 'FROM', '"LDJ"') # or: typ, msgnums = M.search(None, '(FROM "LDJ")')
相关用法
- Python imaplib.IMAP4.store用法及代码示例
- Python imaplib.IMAP4用法及代码示例
- Python image转binary用法及代码示例
- Python import__用法及代码示例
- Python importlib.reload用法及代码示例
- Python imp.reload用法及代码示例
- Python OpenCV imdecode()用法及代码示例
- Python importlib.util.LazyLoader.factory用法及代码示例
- Python itertools.takewhile用法及代码示例
- Python string isalnum()用法及代码示例
- Python id()用法及代码示例
- Python ipaddress.collapse_addresses用法及代码示例
- Python ipaddress.IPv4Address.reverse_pointer用法及代码示例
- Python io.text_encoding用法及代码示例
- Python string isidentifier()用法及代码示例
- Python numpy irr用法及代码示例
- Python ipaddress.IPv4Address.__format__用法及代码示例
- Python calendar isleap()用法及代码示例
- Python itertools.compress用法及代码示例
- Python math isclose()用法及代码示例
注:本文由纯净天空筛选整理自python.org大神的英文原创作品 imaplib.IMAP4.search。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。