當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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