PythonのGmailモジュールlibgmail

456 ワード

libgmailは、PythonがGmailサービスにアクセスするためのモジュールです.
サンプルコード:
import libgmail

ga = libgmail.GmailAccount("[email protected]", "mymailismypass")
ga.login()
folder = ga.getMessagesByFolder('inbox')

for thread in folder:
  print thread.id, len(thread), thread.subject
  for msg in thread:
    print "  ", msg.id, msg.number, msg.subject
    print msg.source