When does python 3.1, 3.2 version out?

2009-01-06 Thread
Now, the 3.0 version is out for a time. I wonder when the python 3.1 is out, and what change is in python 3.1. Thanks. -- http://mail.python.org/mailman/listinfo/python-list

Re: are there any lib for receive hotmail ?

2006-09-06 Thread
thanks. Tim Chase 写道: > > And receiving hotmail (or any outher webmail) using scraping > > techniques is a daunting task, to say the least - you should > > forget about that IMHO. > > There's a perl project called "gotmail" that will do the scraping > to dump in a local mailbox file (I don't re

Re: are there any lib for receive hotmail ?

2006-09-05 Thread
poplib cannot receive hotmail. Paul McGuire wrote: > "" <[EMAIL PROTECTED]> wrote in message > news:[EMAIL PROTECTED] > > thanks. > > > > poplib -- http://mail.python.org/mailman/listinfo/python-list

are there any lib for receive hotmail ?

2006-09-04 Thread
thanks. -- http://mail.python.org/mailman/listinfo/python-list

Re: The lib email parse problem...

2006-08-30 Thread
ent +=plain alter =False subty ='' if alter: if subty =='html': content +=html elif subty =='plain': content +=plain return content

Re: The lib email parse problem...

2006-08-29 Thread
yes, the special is i must choose exactly one section to destruct, instead of processing all subparts. John Machin 写道: > Tim Roberts wrote: > > "" <[EMAIL PROTECTED]> wrote: > > > > >i know how to use email module lib. > > > > > >the question is about how to handle the rfc 1521 mime > > >mul

Re: The lib email parse problem...

2006-08-29 Thread
i know how to use email module lib. the question is about how to handle the rfc 1521 mime mulitpart/alternitave part . i know emai can handle mulitpart , but the subpart alternative is special . Steve Holden 写道: > 叮叮当当 wrote: > > supose a email part like this: > > &

Re: The lib email parse problem...

2006-08-29 Thread
this is just a temp solution for the simplest email format as my example, and i cannot always only show the html part. but in fact , there are many more difficult mail format btw, i know how to use walk(), and the question is not this. my code is as the following: def mail_content(mail): co

Re: The lib email parse problem...

2006-08-29 Thread
i just use email module lib. Max M 写道: > 叮叮当当 wrote: > > this is not enough. > > > > when a part is mulitpart/alternative, i must find out which sub part i > > need, not all the subparts. so i must know when the alternative is > > ended. > > &

Re: The lib email parse problem...

2006-08-29 Thread
supose a email part like this: Content-Type: Multipart/Alternative; boundary="Boundary-=_iTIraXJMjfQvFKkvZlqprUgHZWDm" --Boundary-=_iTIraXJMjfQvFKkvZlqprUgHZWDm Content-Type: text/plain; charset="gb2312" Content-Transfer-Encoding: 7bit abcd. --Boundary-=_iTIraXJMjfQvFKkvZlqprUgHZWDm Content-

Re: The lib email parse problem...

2006-08-29 Thread
this is not enough. when a part is mulitpart/alternative, i must find out which sub part i need, not all the subparts. so i must know when the alternative is ended. John Machin 写道: > 叮叮当当 wrote: > > hi, all > > > > when a email body consist with multipart/alternative, i m

The lib email parse problem...

2006-08-29 Thread
hi, all when a email body consist with multipart/alternative, i must know when the boundary ends to parse it, but the email lib have not provide some function to indicate the boundary end, how to solve it ? thanks. -- http://mail.python.org/mailman/listinfo/python-list

python and poplib

2006-08-17 Thread
Hi, all. i have two question with poplib: 1. How to judge if a mail is or not a new mail ? 2. How Can i get the send-mailbox's mail? thanks . -- http://mail.python.org/mailman/listinfo/python-list