imapidle icon indicating copy to clipboard operation
imapidle copied to clipboard

Handling IMAP IDLE command with plain old Python.

IMAP IDLE

Handling IDLE connection with Python, without thread or strange things.

It's a monkey patch, all other code came from python imaplib.

Status

Early POC.

Example

from imapidle import imaplib

m = imaplib.IMAP4_SSL('imap.gmail.com')
m.login('robert', 'pa55w0rd')
m.select()
for uid, msg in m.idle():
    print msg

Licence

MIT © Mathieu Lecarme 2012