4

How to download the attachment from gmail inbox using python program?

  • Possible duplicate: http://stackoverflow.com/questions/348630/how-can-i-download-all-emails-with-attachments-from-gmail/642988#642988 – unutbu May 25 '11 at 11:55

1 Answers1

6

With poplib in general.

And there is python-gmail library: libgmail

DrTyrsa
  • 31,014
  • 7
  • 86
  • 86
  • @DrTyrsa actually i don't know how to login and what procedure is to be used to fetch latest mail and then i have to download the attached file. – Madhur Rampal May 25 '11 at 11:54
  • @Madhur Rampal Have you clicked the links I provided? libgmail has nice documentation. To login you should use `login()` method of the `libgmail.GmailAccount` class. – DrTyrsa May 25 '11 at 12:20