summaryrefslogtreecommitdiffstats
path: root/Lib/email/__init__.py
blob: c13495b4b887c132b5bf8e0897f3fc9a64269285 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# Copyright (C) 2001 Python Software Foundation
# Author: barry@zope.com (Barry Warsaw)

"""A package for parsing, handling, and generating email messages.
"""

__version__ = '1.0'

__all__ = ['Encoders',
           'Errors',
           'Generator',
           'Iterators',
           'MIMEAudio',
           'MIMEBase',
           'MIMEImage',
           'MIMEMessage',
           'MIMEText',
           'Message',
           'Parser',
           'Utils',
           'message_from_string',
           'message_from_file',
           ]



# Some convenience routines
from Parser import Parser as _Parser
from Message import Message as _Message

def message_from_string(s, _class=_Message):
    return _Parser(_class).parsestr(s)

def message_from_file(fp, _class=_Message):
    return _Parser(_class).parse(fp)