Python的Gmail模块 libgmail

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

猜你喜欢

转载自netcome.iteye.com/blog/1474050