python操作gmail實(shí)例
來(lái)源:易賢網(wǎng) 閱讀:1076 次 日期:2015-01-16 14:06:41
溫馨提示:易賢網(wǎng)小編為您整理了“python操作gmail實(shí)例”,方便廣大網(wǎng)友查閱!

本文實(shí)例講述了python操作gmail的方法。分享給大家供大家參考。

具體實(shí)現(xiàn)方法如下:

復(fù)制代碼 代碼如下:import imaplib, re

class pygmail(object):

def __init__(self):

self.IMAP_SERVER='imap.gmail.com'

self.IMAP_PORT=993

self.M = None

self.response = None

self.mailboxes = []

def login(self, username, password):

self.M = imaplib.IMAP4_SSL(self.IMAP_SERVER, self.IMAP_PORT)

rc, self.response = self.M.login(username, password)

return rc

def get_mailboxes(self):

rc, self.response = self.M.list()

for item in self.response:

self.mailboxes.append(item.split()[-1])

return rc

def get_mail_count(self, folder='Inbox'):

rc, self.response = self.M.select(folder)

return self.response[0]

def get_unread_count(self, folder='Inbox'):

rc, self.response = self.M.status(folder, "(UNSEEN)")

unreadCount = re.search("UNSEEN (\d+)", self.response[0]).group(1)

return unreadCount

def get_imap_quota(self):

quotaStr = self.M.getquotaroot("Inbox")[1][1][0]

r = re.compile('\d+').findall(quotaStr)

if r == []:

r.append(0)

r.append(0)

return float(r[1])/1024, float(r[0])/1024

def get_mails_from(self, uid, folder='Inbox'):

status, count = self.M.select(folder, readonly=1)

status, response = self.M.search(None, 'FROM', uid)

email_ids = [e_id for e_id in response[0].split()]

return email_ids

def get_mail_from_id(self, id):

status, response = self.M.fetch(id, '(body[header.fields (subject)])')

return response

def rename_mailbox(self, oldmailbox, newmailbox):

rc, self.response = self.M.rename(oldmailbox, newmailbox)

return rc

def create_mailbox(self, mailbox):

rc, self.response = self.M.create(mailbox)

return rc

def delete_mailbox(self, mailbox):

rc, self.response = self.M.delete(mailbox)

return rc

def logout(self):

self.M.logout()

if __name__ =="__main__":

demo=pygmail()

demo.login("")

mailBoxex=demo.get_mailboxes()

for i in demo.response:

print i

demo.logout()

希望本文所述對(duì)大家的Python程序設(shè)計(jì)有所幫助。

更多信息請(qǐng)查看IT技術(shù)專(zhuān)欄

更多信息請(qǐng)查看腳本欄目
易賢網(wǎng)手機(jī)網(wǎng)站地址:python操作gmail實(shí)例
由于各方面情況的不斷調(diào)整與變化,易賢網(wǎng)提供的所有考試信息和咨詢(xún)回復(fù)僅供參考,敬請(qǐng)考生以權(quán)威部門(mén)公布的正式信息和咨詢(xún)?yōu)闇?zhǔn)!

2025國(guó)考·省考課程試聽(tīng)報(bào)名

  • 報(bào)班類(lèi)型
  • 姓名
  • 手機(jī)號(hào)
  • 驗(yàn)證碼
關(guān)于我們 | 聯(lián)系我們 | 人才招聘 | 網(wǎng)站聲明 | 網(wǎng)站幫助 | 非正式的簡(jiǎn)要咨詢(xún) | 簡(jiǎn)要咨詢(xún)須知 | 加入群交流 | 手機(jī)站點(diǎn) | 投訴建議
工業(yè)和信息化部備案號(hào):滇ICP備2023014141號(hào)-1 云南省教育廳備案號(hào):云教ICP備0901021 滇公網(wǎng)安備53010202001879號(hào) 人力資源服務(wù)許可證:(云)人服證字(2023)第0102001523號(hào)
云南網(wǎng)警備案專(zhuān)用圖標(biāo)
聯(lián)系電話:0871-65099533/13759567129 獲取招聘考試信息及咨詢(xún)關(guān)注公眾號(hào):hfpxwx
咨詢(xún)QQ:526150442(9:00—18:00)版權(quán)所有:易賢網(wǎng)
云南網(wǎng)警報(bào)警專(zhuān)用圖標(biāo)