当前位置: 首页 > 工具软件 > libgmail > 使用案例 >

Python的Gmail模块 libgmail

狄英哲
2023-12-01

libgmail 是 Python 用来访问 Gmail 服务的模块。

示例代码:

import libgmail

ga = libgmail.GmailAccount("google@gmail.com", "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
 类似资料: