diff --git a/README.md b/README.md index 9e6b903..8c3e0e5 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -Mailbox +Mailbox - IMAP for humans ======= Python library for reading IMAP mailboxes and converting the email content to human readable data @@ -28,6 +28,8 @@ Usage all_messages = mailbox.get_all() + for message in all_messages: + ........ # Every message is converted to a dictionary with the following keys: diff --git a/setup.py b/setup.py index d577615..2f185ed 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ version = '0.3' setup( name='mailbox', version=version, - description="Python library for readin IMAP mailboxes and parsing emails", + description="Python library for reading IMAP mailboxes and parsing emails", long_description= open('README.md').read(), keywords='email, IMAP, parsing emails', author='Martin Rusev',