2006-01-17 00:49:07 -04:00
|
|
|
|
# Copyright (C) 2001-2006 Python Software Foundation
|
2004-10-03 00:16:19 -03:00
|
|
|
|
# Author: Barry Warsaw
|
|
|
|
|
# Contact: email-sig@python.org
|
2001-09-23 00:17:28 -03:00
|
|
|
|
|
2004-05-09 00:55:11 -03:00
|
|
|
|
"""A package for parsing, handling, and generating email messages."""
|
2001-09-23 00:17:28 -03:00
|
|
|
|
|
2006-01-17 00:49:07 -04:00
|
|
|
|
__version__ = '3.0.1'
|
2001-09-23 00:17:28 -03:00
|
|
|
|
|
2002-09-30 17:41:33 -03:00
|
|
|
|
__all__ = [
|
|
|
|
|
'base64MIME',
|
|
|
|
|
'Charset',
|
|
|
|
|
'Encoders',
|
|
|
|
|
'Errors',
|
|
|
|
|
'Generator',
|
|
|
|
|
'Header',
|
|
|
|
|
'Iterators',
|
|
|
|
|
'Message',
|
|
|
|
|
'MIMEAudio',
|
|
|
|
|
'MIMEBase',
|
|
|
|
|
'MIMEImage',
|
|
|
|
|
'MIMEMessage',
|
|
|
|
|
'MIMEMultipart',
|
|
|
|
|
'MIMENonMultipart',
|
|
|
|
|
'MIMEText',
|
|
|
|
|
'Parser',
|
|
|
|
|
'quopriMIME',
|
|
|
|
|
'Utils',
|
|
|
|
|
'message_from_string',
|
|
|
|
|
'message_from_file',
|
|
|
|
|
]
|
2001-09-23 00:17:28 -03:00
|
|
|
|
|
2002-09-28 17:52:26 -03:00
|
|
|
|
|
2001-10-04 14:05:11 -03:00
|
|
|
|
|
2002-09-25 19:07:50 -03:00
|
|
|
|
# Some convenience routines. Don't import Parser and Message as side-effects
|
|
|
|
|
# of importing email since those cascadingly import most of the rest of the
|
|
|
|
|
# email package.
|
2004-10-03 00:16:19 -03:00
|
|
|
|
def message_from_string(s, *args, **kws):
|
2002-09-28 17:52:26 -03:00
|
|
|
|
"""Parse a string into a Message object model.
|
|
|
|
|
|
|
|
|
|
Optional _class and strict are passed to the Parser constructor.
|
|
|
|
|
"""
|
2002-09-25 19:07:50 -03:00
|
|
|
|
from email.Parser import Parser
|
2004-10-03 00:16:19 -03:00
|
|
|
|
return Parser(*args, **kws).parsestr(s)
|
2001-09-23 00:17:28 -03:00
|
|
|
|
|
2004-05-09 00:55:11 -03:00
|
|
|
|
|
2004-10-03 00:16:19 -03:00
|
|
|
|
def message_from_file(fp, *args, **kws):
|
2002-09-28 17:52:26 -03:00
|
|
|
|
"""Read a file and parse its contents into a Message object model.
|
|
|
|
|
|
|
|
|
|
Optional _class and strict are passed to the Parser constructor.
|
|
|
|
|
"""
|
2002-09-25 19:07:50 -03:00
|
|
|
|
from email.Parser import Parser
|
2004-10-03 00:16:19 -03:00
|
|
|
|
return Parser(*args, **kws).parse(fp)
|