Skip to content

athoune/imapidle

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 

Repository files navigation

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

About

Handling IMAP IDLE command with plain old Python.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages