首頁>科技>

大家好,又來到Python辦公自動化專題。

在之前的系列文章中,我們已經講解了如何利用Python讀取、收發、管理郵件。本文將進一步分享如何用Python製作一個郵件自動回覆機器人

比如當傳送標題為“來句詩”時,能夠自動返回一句詩;當傳送郵件標題為“xx(城市)天氣”如“廣州天氣”時,能夠返回所需城市的天氣情況等等,更多功能可以自己定義,主要將涉及

imbox 讀取及解析附件yagmail 傳送郵件郵件與爬蟲的結合

一、思路分析

和之前的文章類似,我們首先整理下思路,然後逐個解決,簡單來說這個需求可以分為下面的步驟:

定時讀取未讀郵件,如有則獲取標題及發件人如果標題為“來句詩”,則從“今日詩詞”的網站上獲取一句詩;如果標題為“xx(城市)天氣”則從線上天氣預報網站中獲取相應城市的天氣情況和溫度將獲取的資訊組合成新郵件傳送會指定收件人將未讀郵件標為已讀

基本邏輯很簡單,需要用到的知識點我們之前的文章中都有提過,可以直接嘗試完成這個案例。兩個子需求爬取的網站分別是 今日詩詞:https://www.jinrishici.com 和 中國天氣網:http://wthrcdn.etouch.cn/weather_mini?city={城市}

二、程式碼實現

郵箱方面,之前我們講過qq郵箱、網易郵箱、這次再換個郵箱(88郵箱),首先透過 imbox 庫解析郵件,可以透過 kering 庫獲取預先存在本地的系統金鑰(本文以 88 郵箱為例):

import keyring from imbox import Imboxpassword = keyring.get_password('88mail', '[email protected]')with Imbox('imap.88.com', '[email protected]', password, ssl=True) as imbox:     unread_inbox_messages = imbox.messages(unread = True) # 獲取未讀郵件    pass

根據需求自然而然可以想到是反覆獲取未讀郵件,解析其標題觀察是否符合條件,符合相應條件則執行相應的函式,並將函式返回的內容組裝成新的郵件。最後無論是否符合要求都將其標記為已讀。

當然,如果要持續執行就還需要將核心程式碼包裝成函式,並放在迴圈體內部。迴圈可以間隔10分鐘。程式碼如下所示:

import keyring from imbox import Imboximport timepassword = keyring.get_password('88mail', '[email protected]')def get_verse():    passdef get_weather():    passdef send_mail(email, results):    passdef main():    with Imbox('imap.88.com', '[email protected]', password, ssl=True) as imbox:         unread_inbox_messages = imbox.messages(unread = True) # 獲取未讀郵件        for uid, message in unread_inbox_messages :            title = message.subject            email = message.sent_from[0]['email']            results = ''            if title == '來句詩':                results = get_verse()            if title[-2:] == '天氣':                results = get_weather(title[:-2])            if results:                send_mail(email, results)            imbox.mark_seen(uid)            while True:    main()    time.sleep(600)

傳送郵件可以利用之前介紹的 yagmail 庫,核心程式碼 mail.send 接收收件人郵箱、郵件標題、郵件內容三個引數:

import yagmail# 用伺服器、使用者名稱、密碼例項化郵件mail = yagmail.SMTP(user='[email protected]', password = password, host='smtp.88.com') # 待發送的內容contents = ['第一段內容', '第二段內容']# 傳送郵件mail.send('收件人郵箱', '郵件標題', contents) 

由於 send_mail 函式接受爬蟲返回的 results 作為內容,也獲取了 imbox 解析後得到的特定發件人郵箱,因此可以寫成如下形式:

import yagmaildef send_mail(email, results):    mail = yagmail.SMTP(user='[email protected]', password=password, host='smtp.88.com')    contents = [results]    mail.send(email, '【自動回覆】您要的資訊見正文', contents)

問題只剩下如何獲取每日一句以及如何獲取指定城市天氣了,首先看一下每日一句的網站特點(實際上這個網站有 API 介面,讀者可以自行嘗試):

先試試直接返回網站內容:

import requestsurl = 'https://www.jinrishici.com/'response = requests.get(url).textprint(response)

可以返回內容,沒有特別的反爬措施,但返回的正文是亂碼,同時我們也注意到 utf-8 編碼,因此直接修改編碼即可:

import requestsresponse = requests.get(url)response.encoding = "UTF-8"print(response.text)

編碼問題解決以後就可以利用 xpath 解析獲取詩句了:

import requestsfrom lxml import htmlurl = 'https://www.jinrishici.com/'response = requests.get(url)response.encoding = "UTF-8"selector = html.fromstring(response.text)verse = selector.xpath('//*[@id="sentence"]/text()')print(verse)

有趣的是,並沒有按意願返回詩句,原因是網頁中的詩句是以Ajax動態載入的,而非靜態出現在網頁中。

重新分析網頁 XHR 即可獲取真正的訪問連線 https://v2.jinrishici.com/one.json?client=browser-sdk/1.2&X-User-Token=xxxxxx,Token見下圖:

分析好原因後代碼反而更加簡單了:

import requestsurl = 'https://v2.jinrishici.com/one.json?client=browser-sdk/1.2&X-User-Token=xxxxxx'response = requests.get(url)print(response.json()['data']['content'])

返回的詩句直接就可以作為函式結果返回,因此程式碼又可以寫成:

import requestsdef get_verse():    url = 'https://v2.jinrishici.com/one.json?client=browser-sdk/1.2&X-User-Token=xxxxxx'    response = requests.get(url)    return f'您要的每日詩句為:{response.json()["data"]["content"]}'

獲取天氣可以使用官方提供的 API 了,以廣州為例:

import requestsurl = 'http://wthrcdn.etouch.cn/weather_mini?city=廣州'response = requests.get(url)print(response.json())

根據返回的 json 資料很容易獲取今日的天氣情況和最高最低氣溫,組合成函式效果如下:

def get_weather(city):    url = f'http://wthrcdn.etouch.cn/weather_mini?city={city}'    response = requests.get(url).json()    results = response['data']['forecast'][0]    return f'{city}今天的天氣情況為{results["type"]},{results["high"][:-1]}度,{results["low"][:-1]}度'

至此,程式碼部分就寫完了。我們的郵箱自動回覆機器人也就擁有了兩個簡單的功能,當然你可以結合自己的需求實現更多有意思的功能!最後附上完整程式碼供大家學習與交流

import keyringimport yagmailfrom imbox import Imboximport requestsimport timepassword = keyring.get_password('88mail', '[email protected]')def get_verse():    url = 'https://v2.jinrishici.com/one.json?client=browser-sdk/1.2&X-User-Token=xxxxxx'    response = requests.get(url)    return f'您要的每日詩句為:{response.json()["data"]["content"]}'def get_weather(city):    url = f'http://wthrcdn.etouch.cn/weather_mini?city={city}'    response = requests.get(url).json()    results = response['data']['forecast'][0]    return f'{city}今天的天氣情況為{results["type"]},{results["high"][:-1]}度,{results["low"][:-1]}度'def send_mail(email, results):    mail = yagmail.SMTP(user='[email protected]', password=password, host='smtp.88.com')    contents = [results]    mail.send(email, '【自動回覆】您要的資訊見正文', contents)def main():    with Imbox('imap.88.com', '[email protected]', password, ssl=True) as imbox:        unread_inbox_messages = imbox.messages(unread=True)  # 獲取未讀郵件        for uid, message in unread_inbox_messages:            title = message.subject            email = message.sent_from[0]['email']            results = ''            if title == '來句詩':                results = get_verse()            if title[-2:] == '天氣':                results = get_weather(title[:-2])            if results:                send_mail(email, results)            imbox.mark_seen(uid)while True:    main()    time.sleep(600)

2
最新評論
  • 整治雙十一購物亂象,國家再次出手!該跟這些套路說再見了
  • 未來是人工智慧還是人工智障?