- 授权协议: GPL
- 开发语言: Python
- 操作系统: 跨平台
- 软件首页: http://libgmail.sourceforge.net/
软件介绍
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