用法:
class imaplib.IMAP4(host='', port=IMAP4_PORT, timeout=None)
此类实现实际的 IMAP4 协议。初始化实例时,将创建连接并确定协议版本(IMAP4 或 IMAP4rev1)。如果未指定
host
,则使用''
(本地主机)。如果省略port
,则使用标准 IMAP4 端口 (143)。可选的timeout
参数指定连接尝试的超时时间(以秒为单位)。如果 timeout 未给出或为 None,则使用全局默认套接字超时。IMAP4
类支持with
语句。当这样使用时,IMAP4LOGOUT
命令会在with
语句退出时自动发出。例如:>>> from imaplib import IMAP4 >>> with IMAP4("domain.org") as M: ... M.noop() ... ('OK', [b'Nothing Accomplished. d25if65hy903weo.87'])
在 3.5 版中更改:支持
with
添加了声明。在 3.9 版中更改:可选的
timeout
添加了参数。
相关用法
- Python imaplib.IMAP4.search用法及代码示例
- Python imaplib.IMAP4.store用法及代码示例
- 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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。