Created
November 16, 2011 23:22
-
-
Save kovrov/1371844 to your computer and use it in GitHub Desktop.
imaplib search example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import getpass, imaplib | |
from itertools import islice | |
from email.parser import HeaderParser | |
def number_set(seq): | |
res = [] | |
last = first = next(seq) | |
for i in seq: | |
assert last < i | |
if i - last == 1: | |
last = i | |
else: | |
if last == first: | |
res.append(str(last)) | |
else: | |
res.append("{0:d}:{1:d}".format(first,last)) | |
first = last = i | |
if last == first: | |
res.append(str(last)) | |
else: | |
res.append("{0:d}:{1:d}".format(first,last)) | |
return ','.join(res) | |
def search(*criteria): | |
connection = imaplib.IMAP4_SSL("imap.gmail.com") | |
user = input('User name: ') | |
pswd = getpass.getpass() | |
connection.login(user, pswd) | |
connection.select() | |
typ, search_data = connection.uid('SEARCH', None, *criteria) | |
for search_batch in search_data: | |
message_set = number_set(int(i) for i in search_batch.split()) | |
typ, fetch_data = connection.uid("FETCH", message_set, '(BODY[HEADER.FIELDS (DATE FROM SUBJECT)])') | |
for msg in islice(fetch_data, 0, None, 2): | |
yield msg[1] | |
connection.close() | |
connection.logout() | |
parser = HeaderParser() | |
for raw_headers in search('FROM','john'): | |
print(parser.parsestr(raw_headers)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment