forked from ietf-tools/datatracker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path__init__.py
21 lines (18 loc) · 863 Bytes
/
__init__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#
# pyzmail/__init__.py
# (c) Alain Spineux <[email protected]>
# http://www.magiksys.net/pyzmail
# Released under LGPL
from . import utils
from .generate import compose_mail, send_mail, send_mail2
from .parse import email_address_re, PyzMessage, PzMessage, decode_text
from .parse import message_from_string, message_from_file
from .parse import message_from_bytes, message_from_binary_file # python >= 3.2
from .version import __version__
# to help epydoc to display functions available from top of the package
__all__= [ 'compose_mail', 'send_mail', 'send_mail2', 'email_address_re', \
'PyzMessage', 'PzMessage', 'decode_text', '__version__',
'utils', 'generate', 'parse', 'version',
'message_from_string','message_from_file',
'message_from_binary_file', 'message_from_bytes', # python >= 3.2
]