2013-07-23 12:01:59 +03:00
2013-07-23 12:01:59 +03:00
2013-07-23 12:01:59 +03:00
2013-07-22 04:40:29 -07:00

Mailbox

Small Python library for reading IMAP email boxes and parsing the content to JSON

Usage

from mailbox import MailBox

mailbox = MailBox('imap.gmail.com',
			  username='username', 
			  password='password',
			  ssl=True)

unread = mailbox.get_unread()

for message in unread:
	print message.json()
Description
Python IMAP for Human beings
Readme 326 KiB
Languages
Python 97.5%
omnetpp-msg 2.1%
Makefile 0.4%