用法:
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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。