用法:
email.iterators._structure(msg, fp=None, level=0, include_default=False)
打印消息对象结构的内容类型的缩进表示。例如:
>>> msg = email.message_from_file(somefile) >>> _structure(msg) multipart/mixed text/plain text/plain multipart/digest message/rfc822 text/plain message/rfc822 text/plain message/rfc822 text/plain message/rfc822 text/plain message/rfc822 text/plain text/plain
可选的
fp
是用于打印输出的 file-like 对象。它必须适合 Python 的print()
函数。level
在内部使用。include_default
,如果为真,也打印默认类型。
相关用法
- Python email.message.Message.walk用法及代码示例
- Python email.headerregistry.DateHeader用法及代码示例
- Python email.message.EmailMessage.add_header用法及代码示例
- Python email.utils.getaddresses用法及代码示例
- Python email.header.decode_header用法及代码示例
- Python email.message.EmailMessage.walk用法及代码示例
- Python email.message.Message.add_header用法及代码示例
- Python email.message.Message.as_bytes用法及代码示例
- Python email.message.Message.as_string用法及代码示例
- Python email.headerregistry.BaseHeader用法及代码示例
- Python emoji转text用法及代码示例
- Python numpy matrix empty()用法及代码示例
- Python numpy matrix eye()用法及代码示例
- Python enchant.request_dict()用法及代码示例
- Python eval()用法及代码示例
- Python enum.IntEnum用法及代码示例
- Python math expm1()用法及代码示例
- Python enchant.get_enchant_version()用法及代码示例
- Python enchant.request_pwl_dict()用法及代码示例
- Python eval用法及代码示例
注:本文由纯净天空筛选整理自python.org大神的英文原创作品 email.iterators._structure。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。