本文将进一步分享如何用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', 'test@88.com')with Imbox('imap.88.com', 'test@88.com', 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', 'test@88.com')def get_verse():passdef get_weather(): passdef send_mail(email, results): passdef main(): with Imbox('imap.88.com', 'test@88.com', 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='xxx@88.com', password = password, host='smtp.88.com') # 待发送的内容contents = ['第一段内容', '第二段内容']# 发送邮件mail.send('收件人邮箱', '邮件标题', contents)
由于send_mail函数接受爬虫返回的results作为内容,也获取了imbox解析后得到的特定发件人邮箱,因此可以写成如下形式:
import yagmaildef send_mail(email, results):mail = yagmail.SMTP(user='test@88.com', 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', 'test@88.com')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='test@88.com', password=password, host='smtp.88.com') contents = [results] mail.send(email, '【自动回复】您要的信息见正文', contents)def main(): with Imbox('imap.88.com', 'test@88.com', 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)
合作企业
行业和类目
服务响应
垃圾拦截率
连续多年获得网易优秀经销商
一心一意专心致力于企业邮箱
满足企业信息化个性需求
一对一邮箱顾问服务