summaryrefslogtreecommitdiffstats
path: root/Lib/email/__init__.py
blob: 834e9aaccca2b5e82f0fe610ae221bde6d896c29 (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
36
37
38
39
# Copyright (C) 2001,2002 Python Software Foundation
# Author: barry@zope.com (Barry Warsaw)

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

__version__ = '2.2'

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


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

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

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