zyllf2009 发表于 2017-4-24 13:11:13

Python的Gmail模块 libgmail

  

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
页: [1]
查看完整版本: Python的Gmail模块 libgmail