diff options
author | Barry Warsaw <barry@python.org> | 2001-09-23 03:17:28 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 2001-09-23 03:17:28 (GMT) |
commit | ba92580f01b47ba1468c382961ed5122654c2520 (patch) | |
tree | 413464c274da1a93dc99d0a1cf13baf9a99c3220 /Lib/email/__init__.py | |
parent | d61d0d3f6dbd960a761c05ff7fea848cb6490aa3 (diff) | |
download | cpython-ba92580f01b47ba1468c382961ed5122654c2520.zip cpython-ba92580f01b47ba1468c382961ed5122654c2520.tar.gz cpython-ba92580f01b47ba1468c382961ed5122654c2520.tar.bz2 |
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).
Diffstat (limited to 'Lib/email/__init__.py')
-rw-r--r-- | Lib/email/__init__.py | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/Lib/email/__init__.py b/Lib/email/__init__.py new file mode 100644 index 0000000..4995114 --- /dev/null +++ b/Lib/email/__init__.py @@ -0,0 +1,34 @@ +# 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', + 'Image', + 'Iterators', + 'MIMEBase', + 'Message', + 'MessageRFC822', + 'Parser', + 'Text', + '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) |