前言
本人因为比较喜欢看漫画和动漫, 所以总会遇到一些问题, 因为订阅的漫画或者动漫太多, 总会忘记自己看到那一章节或者不知道什么时候更新. 故会有这么一个需求, 想记录自己想看的漫画或动画并在其更新的时候第一时间知道,
当然, 你可以拓展到任何你想关注的, 都可以通过邮件及时推送.
思路
目录
运行环境
- python3.6
- 第三方库
1
2
3
4
|
fake - useragent = = 0.1 . 11 pyquery = = 1.4 . 0 requests = = 2.21 . 0 pip3 install - r requirements.txt - i http: / / pypi.douban.com / simple |
实现
获取全部代码, 请移步:github
git clone https://github.com/amd794/checkupdate.git
邮件发送
需要用到smtplib发送邮件和email构造邮件.
smtp是发送邮件的协议,python内置对smtp的支持,可以发送纯文本邮件、html邮件以及带附件的邮件。
下面来构造一封完整的邮件, 首先导入需要用到的方法或类:
1
2
3
4
5
|
from email import encoders from email.header import header from email.mime.text import mimetext from email.utils import parseaddr, formataddr import smtplib |
然后, 我们先构造好头部, 工欲善其事,必先利其器
1
2
3
4
5
6
7
8
9
10
11
12
|
# 发送人 from_name = 'amd794' # 发送人邮箱 from_addr = '2952277346@qq.com' # 发送人密码 password = '你的密码' # 收件人 to_name = 'your' # 收件人邮箱 to_addr = '2952277346@qq.com' # 邮箱服务 smtp_server = 'smtp.qq.com' |
这里用到qq的smtp服务, 你也可以换成你喜欢的, 比如163, google 等, 自选
但是你必须开启邮箱的smtp服务, 下面来介绍下qq邮箱打开服务的方法
你需要登录你的qq邮箱账号, https://mail.qq.com/
登录后, 点击设置
然后点击账户
滑动滚轮, 找到如下所示, 我是已经开了, 你只需要点击开启, 然后按说明一步一步就行
然后再点击生成授权码, 将得到的密码, 填到上面的password 字段
这样, 头部就构造好了
然后, 构造发送体
1
2
3
4
5
6
|
def _contact( self , msg, from_addr, to_addr, title): msg[ 'from' ] = self ._format_addr( '%s <%s>' % (from_name, from_addr)) msg[ 'to' ] = self ._format_addr( '%s <%s>' % (to_name, to_addr)) msg[ 'subject' ] = header(title, 'utf-8' ).encode() msg = mimetext(content, 'plain' , 'utf-8' ) _contact(msg, from_addr, to_addr, title) |
发送邮件
1
2
3
4
5
|
server = smtplib.smtp(smtp_server, 25 ) server.set_debuglevel( 1 ) server.login(from_addr, password) server.sendmail(from_addr, [to_addr], msg.as_string()) server.quit() |
发送成功
更新检测
思路是通过, 获取云端数据 然后 通过与本地缓存 对比, 得到更新情况
构造本地数据, 自定义自己想要订阅的漫画, 格式 平台-名称-链接
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# 支持平台 漫画台, 土豪漫画, 腾讯漫画,腾讯视频 对应 manhuatai tohomh123 tencentcomic tencentvedio comecdict = { 'manhuatai-武动乾坤' : 'https://www.manhuatai.com/wudongqiankun' , 'manhuatai-斗破苍穹' : 'https://www.manhuatai.com/doupocangqiong' , 'tohomh123-妖神记' : 'https://www.tohomh123.com/yaoshenji/' , 'manhuatai-大主宰' : 'https://www.manhuatai.com/dazhuzai' , 'tencentcomic-海贼王' : 'https://ac.qq.com/comic/comicinfo/id/505430' , 'tohomh123-全职法师' : 'https://www.tohomh123.com/quanzhifashi/' , 'tohomh123-永恒至尊' : 'https://www.tohomh123.com/yonghengzhizun/' , 'tencentvedio-万界神主' : 'https://v.qq.com/x/cover/y0jueuihog64xhb/j0030ajsgq9.html' , 'tencentvedio-斗罗大陆' : 'https://v.qq.com/x/cover/m441e3rjq9kwpsc/r0030jqn37g.html' , 'tencentvedio-狐妖小红娘' : 'https://v.qq.com/x/cover/0sdnyl7h86atoyt.html' , 'tencentvedio-万界仙踪 第2季' : 'https://v.qq.com/x/cover/7s65u4bg66so7e6/y0030u40wuu.html' , 'tencentvedio-天行九歌' : 'https://v.qq.com/x/cover/rm3tmmat4li8uul/w0030phkr6h.html' , } |
最后检测实现, 部分代码:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
def main(): # 支持的平台 paltfromlist = { 'manhuatai' : manhuatai, # 漫画台 'tencentcomic' : tencentcomic, # 腾讯动漫平台 'tohomh123' : tohomh123, # 土豪漫画平台 'tencentvedio' : tencentvedio, # 腾讯视频 } with open ( 'datas.json' , encoding = 'utf-8' ) as fr: # 读取本地漫画状态 datas = json.load(fr) for key, value in comecdict.items(): try : paltfrom, key = key.split( '-' ) obj = paltfromlist.get(paltfrom)().run(value) # 获取漫画最新更新状态 if obj: content, url = obj new_data = content # 最新章节数据 old_data = datas.get(key, none) # 本地章节数据 if old_data ! = new_data: # 判断是否有更新 datas[key] = content # 更新本地章节 with open ( 'template.html' , encoding = 'utf-8' ) as f: tx = f.read(). format (url = url, new_data = new_data, old_data = old_data) # 构造邮件内容 sendemail(content = tx, title = '{key} 更新通知' . format (key = key), emtype = 'htmlcontent' ).sendemail() # 发送邮件, 推送更新 with open ( 'datas.json' , 'w' , encoding = 'utf-8' ) as fw: # 存储更新后的状态 json.dump(datas, fw, ensure_ascii = false, indent = 4 , separators = ( ', ' , ': ' )) else : print ( '\033[22;35;m {} \033[m 暂无更新, 当前章节: \033[22;35;m {} \033[m' . format (key, old_data)) except typeerror: print ( '检测{key}失败, 该平台没有{key}, 或者平台配置有误' . format (key = key)) except exception: sendemail(content = traceback.format_exc(), title = '获取 {key} 时脚本异常通知' . format (key = key)).sendemail() # 发送邮件, 脚本异常 |
最终效果
总结
以上所述是小编给大家介绍的使用python做定时任务及时了解互联网动态,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对服务器之家网站的支持!
如果你觉得本文对你有帮助,欢迎转载,烦请注明出处,谢谢!