Re: [Semi-OT] Accessing gmail from Python

2010-05-09 Thread Andrei Popescu
On Fri,07.May.10, 15:49:27, Ron Johnson wrote: I just set up getmail do do this. That seemed a lot simpler than fetchmail withh the certificates. Maybe the certificates are already somewhere in /usr/share? IIUC getmail doesn't check the certificates. Regards, Andrei -- Offtopic

Re: [Semi-OT] Accessing gmail from Python

2010-05-08 Thread Andrew Malcolmson
On Thu, May 6, 2010 at 4:34 PM, Jordan Metzmeier titan8...@gmail.com wrote: On Thu, May 6, 2010 at 4:14 PM, Ron Johnson ron.l.john...@cox.net wrote: Does anyone have an example of how to do this?  Google hasn't helped, specifically at telling me what the keyfile and certfile should be. Google

Re: [Semi-OT] Accessing gmail from Python

2010-05-08 Thread Andrew Malcolmson
Follow-up to my message above: Sorry, I take it all back. Looks like Gmail is the one and only Google service that you can't access through the GData API. -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of unsubscribe. Trouble? Contact

Re: [Semi-OT] Accessing gmail from Python

2010-05-07 Thread Hugo Vanwoerkom
Ron Johnson wrote: Does anyone have an example of how to do this? Google hasn't helped, specifically at telling me what the keyfile and certfile should be. Google *did*, though, help me with fetchmail, so now I have the relevant pem files. $ dir .certs/ total 48 drwxr-xr-x 2 me me 4096

Re: [Semi-OT] Accessing gmail from Python

2010-05-07 Thread Ron Johnson
On 05/07/2010 02:32 PM, Hugo Vanwoerkom wrote: Ron Johnson wrote: Does anyone have an example of how to do this? Google hasn't helped, specifically at telling me what the keyfile and certfile should be. Google *did*, though, help me with fetchmail, so now I have the relevant pem files. $ dir

[Semi-OT] Accessing gmail from Python

2010-05-06 Thread Ron Johnson
Does anyone have an example of how to do this? Google hasn't helped, specifically at telling me what the keyfile and certfile should be. Google *did*, though, help me with fetchmail, so now I have the relevant pem files. $ dir .certs/ total 48 drwxr-xr-x 2 me me 4096 2010-05-06 15:13:16

Re: [Semi-OT] Accessing gmail from Python

2010-05-06 Thread Jordan Metzmeier
On Thu, May 6, 2010 at 4:14 PM, Ron Johnson ron.l.john...@cox.net wrote: Does anyone have an example of how to do this?  Google hasn't helped, specifically at telling me what the keyfile and certfile should be. Google *did*, though, help me with fetchmail, so now I have the relevant pem

Re: [Semi-OT] Accessing gmail from Python

2010-05-06 Thread Ron Johnson
On 05/06/2010 03:34 PM, Jordan Metzmeier wrote: On Thu, May 6, 2010 at 4:14 PM, Ron Johnsonron.l.john...@cox.net wrote: Does anyone have an example of how to do this? Google hasn't helped, specifically at telling me what the keyfile and certfile should be. Google *did*, though, help me with

Re: [Semi-OT] Accessing gmail from Python

2010-05-06 Thread Cousin Stanley
Does anyone have an example of how to do this? You might start by python import smtplib import email help( smtplib ) help( email ) The newsgroup comp.lang.python can be very helpful especially if you've done a bit of prior research into

Re: [Semi-OT] Accessing gmail from Python

2010-05-06 Thread Ron Johnson
On 05/06/2010 07:19 PM, Cousin Stanley wrote: Does anyone have an example of how to do this? You might start by python import smtplib import email help( smtplib ) help( email ) The newsgroup comp.lang.python can be very helpful

Re: [Semi-OT] Accessing gmail from Python

2010-05-06 Thread Umarzuki Mochlis
I already know how to use the regular POP3 class, which I use on a semi-regular basis for examining/zapping mails which fetchmail barfs on. I've Googled my fingers off, but there are no hints as to what the keyfile and certfile are. maybe this link can help

Re: [Semi-OT] Accessing gmail from Python

2010-05-06 Thread Ron Johnson
On 05/06/2010 09:01 PM, Umarzuki Mochlis wrote: I already know how to use the regular POP3 class, which I use on a semi-regular basis for examining/zapping mails which fetchmail barfs on. I've Googled my fingers off, but there are no hints as to what the keyfile and certfile are. maybe