cpython/Lib/email/Iterators.py
Barry Warsaw ba92580f01 The email package version 1.0, prototyped as mimelib
<http://sf.net/projects/mimelib>.  There /are/ API differences between
mimelib and email, but most of the implementations are shared (except
where cool Py2.2 stuff like generators are used).
2001-09-23 03:17:28 +00:00

33 lines
1,019 B
Python
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Copyright (C) 2001 Python Software Foundation
# Author: barry@zope.com (Barry Warsaw)
"""Various types of useful iterators and generators.
"""
from __future__ import generators
from cStringIO import StringIO
from types import StringType
def body_line_iterator(msg):
"""Iterator over the parts, returning the lines in a string payload."""
for subpart in msg.walk():
payload = subpart.get_payload()
if type(payload) is StringType:
for line in StringIO(payload):
yield line
def typed_subpart_iterator(msg, major='text', minor=None):
"""Iterator over the subparts with a given MIME type.
Use `major' as the main MIME type to match against; this defaults to
"text". Optional `minor' is the MIME subtype to match against; if
omitted, only the main type is matched.
"""
for subpart in msg.walk():
if subpart.get_main_type() == major:
if minor is None or subpart.get_subtype() == minor:
yield subpart