当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python email.iterators._structure用法及代码示例


用法:

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.org大神的英文原创作品 email.iterators._structure。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。