lygyh9985825 发表于 2017-4-29 10:41:05

获取gmail新邮件---python版

#! /usr/bin/python
# -*- coding: utf-8 -*-
#author newdongyuwei@gmail.com
import httplib2
from xml.dom.minidom import parseString
#https://user:password@mail.google.com/mail/feed/atom
gmail_feed_url = "https://mail.google.com/mail/feed/atom"
user="newdongyuwei"
password = "xxxxxx"
http = httplib2.Http()
http.add_credentials(user, password)#basic auth
resp, content = http.request(gmail_feed_url , "GET", body={}, headers={} )
print resp,content
dom = parseString(content)
feed_list = dom.getElementsByTagName('entry')
result = []
for feed in feed_list:
result.append(";".join(.firstChild.nodeValue.strip(),feed.getElementsByTagName("summary").firstChild.nodeValue.strip(),feed.getElementsByTagName("name").firstChild.nodeValue.strip()]))
print result
页: [1]
查看完整版本: 获取gmail新邮件---python版