Re: Email Program

2009-03-07 Thread Ville M. Vainio
J wrote: > Is it possible to make a GUI email program in Python that stores > emails, composes, ect? Here's one with less than 600 lines: http://code.google.com/p/pyqtimap/ -- http://mail.python.org/mailman/listinfo/python-list

Re: Email Program

2009-03-02 Thread Mike Driscoll
Hi James, On Mon, Mar 2, 2009 at 12:41 PM, James Matthews wrote: > You can look at Digsby for an example of an email program. I've followed Digsby for a while, but it's an instant messenger / social network aggregator, not an email client. It's much like a fancy Pidgin and it's not open source,

Re: Email Program

2009-03-02 Thread Tino Wildenhain
Hi, Dennis Lee Bieber wrote: On Sat, 28 Feb 2009 17:50:35 -0800 (PST), J declaimed the following in gmane.comp.python.general: Is it possible to make a GUI email program in Python that stores emails, composes, ect? What is "ect"? The latin phrase is "et cetera" -- roughly translated

Re: Email Program

2009-03-02 Thread James Matthews
There is always the issue of packaging at the end but Python is your programming language. On Mon, Mar 2, 2009 at 10:19 PM, Wayne Cannon wrote: > The Twisted package (http://twistedmatrix.com/) has some examples of > interacting with e-mail servers. Twisted supports interaction between > as

Re: Email Program

2009-03-02 Thread Wayne Cannon
The Twisted package (http://twistedmatrix.com/) has some examples of interacting with e-mail servers. Twisted supports interaction between asynchronous tasks. --Wayne J wrote: Is it possible to make a GUI email program in Python that stores emails, composes, ect? -- http://mail.python.org/m

Re: Email Program

2009-03-02 Thread James Matthews
You can look at Digsby for an example of an email program. On Mon, Mar 2, 2009 at 8:34 PM, Mike Driscoll wrote: > On Feb 28, 7:56 pm, J wrote: > > Is it possible to make a GUI email program in Python that stores > > emails, composes, ect? Also, could I create my own programming > > language in

Re: Email Program

2009-03-02 Thread Mike Driscoll
On Feb 28, 7:56 pm, J wrote: > Is it possible to make a GUI email program in Python that stores > emails, composes, ect? Also, could I create my own programming > language in Python? What are Pythons limits, or is this just a waste > of my time to learn it. The book, "Programming Python 3rd ed."

Re: Email Program

2009-03-02 Thread Paul McGuire
On Mar 2, 1:11 am, Paul Rubin wrote: > Paul McGuire writes: > > As to your question of whether Python can be used to write an e-mail > > client, or to create a programming language, I assure you both are > > possible.  But also, given your unfamiliarity with Python,

Re: Email Program

2009-03-01 Thread Paul Rubin
Paul McGuire writes: > As to your question of whether Python can be used to write an e-mail > client, or to create a programming language, I assure you both are > possible. But also, given your unfamiliarity with Python, both are > well beyond your skills for some time yet, and you are nowhere ne

Re: Email Program

2009-03-01 Thread Paul McGuire
On Feb 28, 7:56 pm, J wrote: > Is it possible to make a GUI email program in Python that stores > emails, composes, ect? Also, could I create my own programming > language in Python? What are Pythons limits, or is this just a waste > of my time to learn it. This "waste of my time" phrase is a tel

Re: Email Program

2009-03-01 Thread Ralf Schoenian
J wrote: Is it possible to make a GUI email program in Python that stores emails, composes, ect? Hi, yes, it is possible. There are modules in the standard library like email, smtplib and poplib. A gui can be written in wxPython, pyQT, pyGTK or tkinter. There are many more toolkits but these

Re: Email Program

2009-03-01 Thread Tino Wildenhain
J wrote: Is it possible to make a GUI email program in Python that stores emails, composes, ect? Yes this is possible. Regards Tino smime.p7s Description: S/MIME Cryptographic Signature -- http://mail.python.org/mailman/listinfo/python-list

RE: Email Program

2009-03-01 Thread Thomas Raef
t; To: python-list@python.org > Subject: Re: Email Program > > Thomas Raef wrote: > > What a great response. > > It's a correct, straight forward and short answer to the op's question. > > Christian > > -- > http://mail.python.org/mailman/listinfo/python-list -- http://mail.python.org/mailman/listinfo/python-list

Re: Email Program

2009-02-28 Thread Shane Geiger
J wrote: Is it possible to make a GUI email program in Python that stores emails, composes, ect? Also, could I create my own programming language in Python? What are Pythons limits, or is this just a waste of my time to learn it. Python is "Turing complete," which means it is a general-purpo

Re: Email Program

2009-02-28 Thread Lie Ryan
J wrote: > Is it possible to make a GUI email program in Python that stores > emails, composes, ect? Also, could I create my own programming > language in Python? What are Pythons limits, or is this just a waste > of my time to learn it. > -- > http://mail.python.org/mailman/listinfo/python-list >

Re: Email Program

2009-02-28 Thread Christian Heimes
Thomas Raef wrote: > What a great response. It's a correct, straight forward and short answer to the op's question. Christian -- http://mail.python.org/mailman/listinfo/python-list

RE: Email Program

2009-02-28 Thread Thomas Raef
What a great response. > -Original Message- > From: python-list-bounces+traef=ebasedsecurity@python.org > [mailto:python-list-bounces+traef=ebasedsecurity@python.org] On > Behalf Of MRAB > Sent: Saturday, February 28, 2009 8:00 PM > To: python-list@python.org &g

Re: Email Program

2009-02-28 Thread MRAB
J wrote: Is it possible to make a GUI email program in Python that stores emails, composes, ect? Yes. -- http://mail.python.org/mailman/listinfo/python-list