18.1.10. email.iterators:迭代器 — Python 文档
来自菜鸟教程
Python/docs/2.7/library/email.iterators
18.1.10. 电子邮件迭代器 : 迭代器
使用 Message.walk 方法迭代消息对象树相当容易。 email.iterators 模块提供了一些有用的对消息对象树的更高级别的迭代。
- email.iterators.body_line_iterator(msg[, decode])
这将遍历 msg 的所有子部分中的所有有效负载,逐行返回字符串有效负载。 它跳过所有子部分标头,并跳过任何带有不是 Python 字符串的有效负载的子部分。 这在某种程度上相当于使用 readline() 从文件中读取消息的纯文本表示,跳过所有中间标题。
可选的 decode 传递给 Message.get_payload。
- email.iterators.typed_subpart_iterator(msg[, maintype[, subtype]])
这将迭代 msg 的所有子部分,仅返回那些与 maintype 和 subtype 指定的 MIME 类型匹配的子部分。
注意 子类型 是可选的; 如果省略,则子部分 MIME 类型匹配仅与主类型进行匹配。 maintype 也是可选的; 它默认为 文本 。
因此,默认情况下 typed_subpart_iterator() 返回 MIME 类型为 text/* 的每个子部分。
添加了以下功能作为有用的调试工具。 它应该 而不是 被视为包支持的公共接口的一部分。
- email.iterators._structure(msg[, fp[, level]])
打印消息对象结构的内容类型的缩进表示。 例如:
>>> 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 是一个类似文件的对象,用于打印输出。 它必须适合 Python 的扩展打印语句。 level 内部使用。