An IMAP queue package
Project description
pyimapq
This package uses any IMAP server as a python queue, allowing processes in separate domains to communicate over EMAIL.
All you need is an IMAP account, and you are good to go.
Example usage:
from pyimapq import PyImapQ
mq = PyImapQ(user='my_user', password='very strong password')
assert mq.connected
def flt(subject):
return subject in ['a', 'list', 'of', 'subjects', 'to', 'accept']
msgs = mq.get_unread_emails(flt, mark_as_read=True)
# msgs will now hold the email itself. You can use mq.get_body(msg) to get the
# body, or msg['Subject'], etc, to access the message meta data
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.