"senders" is list, that is why that regex does not work. I don't like regexes that much so you can try this:

parsed_senders = []
sender = ""
for item in senders:
   if isinstance(item,tuple):
      item= ''.join(item)
   if item==')':
      parsed_senders.append(sender[sender.find('From:')+5:].strip())
      sender = ""
   else:
      sender+=item
print parsed_senders

Sebastjan

On 3/25/06, Kun <[EMAIL PROTECTED]> wrote:
Marco Carvalho wrote:
> On 3/24/06, Sebastjan Trepca <[EMAIL PROTECTED]> wrote:
>
>> m.select('myfolder')
>
> Some attention is required here to retrieve subfolders.
> Some imap servers like Cyrus and Courier uses "INBOX.subfolder" to
> access subfolders.
> --
> Marco Carvalho (macs) | marcoacarvalho(a)gmail.com
> http://arrakis.no-ip.info  | http://cdd.debian-br.org
> Maceio - Alagoas - Brazil
> Debian GNU/Linux unstable (Sid)
> GNU-PG ID:08D82127 - Linux Registered User #141545
> Notícias Semanais do Debian em Português: http://www.debian.org/News/weekly
> Alertas de Segurança Debian (DSA): http://www.debian.org/security


so i have used the following code and have successfully saved a list of
senders as a string.  however, the string has much more information than
just the email address and i am wondering what is the best way to parse
the email address out of the entire string.

sample string:
>>> print status, senders
OK [('460 (BODY[HEADER.FIELDS (FROM)] {46}', 'From: Friend
< [EMAIL PROTECTED] >\r\n\r\n'), ')', ('462 (BODY[HEADER.FIELDS (FROM)] {37}',
'From: Kun <[EMAIL PROTECTED]>\r\n\r\n'), ')']

how do i just get the two email addresses out of there?

my code is:

from imaplib import *
import getpass
m = IMAP4("xxxxxxxx")
m.login('xxxxxx', 'xxxxxxx')
m.select('Inbox')
status, data = "" "BIKES")')
assert status=='OK', "Error. Message: %s"%data
data = "" #you get your results in a list and search returns only
one result
assert data,"No results"
#cool, we have results, but IMAP's search command only returns IDs so we
have to fetch
#msgs now
status,senders = m.fetch(data.replace(' ',','),'(BODY.PEEK[HEADER.FIELDS
(FROM)])')
assert status=='OK', "Error. Message: %s"%data
print senders
--
http://mail.python.org/mailman/listinfo/python-list



--
Sebastjan
http://www.trepca.si/blog
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to