python定时利用QQ邮件发送天气预报

python

大致介绍

  好久没有写博客了,正好今天有时间把前几天写的利用python定时发送QQ邮件记录一下

  1、首先利用request库去请求数据,天气预报使用的是和风天气的API(www.heweather.com/douments/api/s6/weather-forecast)

  2、利用python的jinja2模块写一个html模板,用于展示数据

  3、python的email构建邮件,smtplib发送邮件

  4、最后使用crontab定时执行python脚本

  涉及的具体知识可以去看文档,本文主要就是解释代码的结构

和风天气API

  API没什么好说的,利用requests库去请求数据,然后提取出数据,使用方法和风天气API说的很详尽了

HTML模板

  利用jinja2在和脚本同级的目录写一个HTML模板

写好模板,我们就需要在脚本中引入他,并给他传递数据

email构建邮件,smtplib发送邮件

  注意:

    1、首先需要开启QQ邮箱的SMTP服务,一般端口是465

    2、在构建邮件和发送邮件时都需要接受者的邮箱,但是他们需要的数据格式是不同的,在构建邮件时,接受者邮箱需要转换成一个string,而在发送邮件时,接受者邮箱必须是一个list

crontab定时发送邮件

  我想对crontab说:

  这个crontab真的是大坑,坑了我好久,坑的我不行不行的

  既然你们诚心诚意的发问了,那我就大发慈悲的告诉你们是那些坑吧

  1、在crontab中要写绝对路径,包括python3,查看python的安装位置:

  

  2、如果脚本中涉及了中文,记得一定要写export LANG="****",如果不知道属性是什么:

  

  然后 crontab -e写入类似下面的代码:

  表示在每晚的22:00执行脚本,具体的crontab语法可以自行搜索

  邮件:

  ok????

  源代码:

  1 #!/usr/local/bin/python3

2 # coding=utf-8

3

4 import requests

5 import json

6 import smtplib

7 import jinja2

8 import os.path as pth

9 import time

10 from email.mime.text import MIMEText

11 from email.header import Header

12

13 HEFEN_D = pth.abspath(pth.dirname(__file__))

14 LOCATION = '北京'

15 ORIGINAL_URL = 'https://free-api.heweather.com/s6/weather/forecast?parameters'

16 TO = ['8*******@qq.com', '2********@qq.com']

17

18

19 def sendEmail(content, title, from_name, from_address, to_address, serverport, serverip, username, password):

20 msg = MIMEText(content, _subtype='html',_charset='utf-8')

21 msg['Subject'] = Header(title, 'utf-8')

22 # 这里的to_address只用于显示,必须是一个string

23 msg['To'] = ','.join(to_address)

24 msg['From'] = from_name

25 try:

26 s = smtplib.SMTP_SSL(serverip, serverport)

27 s.login(username, password)

28 # 这里的to_address是真正需要发送的到的mail邮箱地址需要的是一个list

29 s.sendmail(from_address, to_address, msg.as_string())

30 print('%s----发送邮件成功' % time.strftime("%Y-%m-%d %H:%M:%S", time.localtime()))

31 except Exception as err:

32 print(time.strftime("%Y-%m-%d %H:%M:%S", time.localtime()))

33 print(err)

34

35 def get_data():

36 new_data = []

37 parametres = {

38 'location': LOCATION,

39 'key': '************ ', #注册和风天气会给你一个KEY

40 'lang': 'zh',

41 'unit': 'm'

42 }

43

44 try:

45 response = requests.get(ORIGINAL_URL,params=parametres)

46 r = json.loads(json.dumps(response.text,ensure_ascii=False,indent=1))

47 r = json.loads(response.text)

48 except Exception as err:

49 print(err)

50

51 weather_forecast = r['HeWeather6'][0]['daily_forecast']

52 for data in weather_forecast:

53 new_obj = {}

54 # 日期

55 new_obj['date'] = data['date']

56 # 日出时间

57 new_obj['sr'] = data['sr']

58 # 日落时间

59 new_obj['ss'] = data['ss']

60 # 最高温度

61 new_obj['tmp_max'] = data['tmp_max']

62 # 最低温度

63 new_obj['tmp_min'] = data['tmp_min']

64 # 白天天气状况描述

65 new_obj['cond_txt_d'] = data['cond_txt_d']

66 # 风向

67 new_obj['wind_dir'] = data['wind_dir']

68 # 风力

69 new_obj['wind_sc'] = data['wind_sc']

70 # 降水概率

71 new_obj['pop'] = data['pop']

72 # 能见度

73 new_obj['vis'] = data['vis']

74

75 new_data.append(new_obj)

76 return new_data

77

78

79

80 def render_mail(data):

81 env = jinja2.Environment(

82 loader = jinja2.FileSystemLoader(HEFEN_D)

83 )

84 return env.get_template('hefentianqi.html').render({'data': data})

85

86 def main():

87 config = {

88 "from": "2********@qq.com",

89 "from_name": '预报君',

90 "to": TO,

91 "serverip": "smtp.qq.com",

92 "serverport": "465",

93 "username": "2*******@qq.com",

94 "password": "**********" #QQ邮箱的SMTP授权码

95 }

96

97 title = "别走,我给你看个宝贝"

98

99 data = get_data()

100 body = render_mail(data)

101 sendEmail(body, title, config['from_name'], config['from'], config['to'], config['serverport'], config['serverip'], config['username'], config['password'])

102

103

104 main()

以上是 python定时利用QQ邮件发送天气预报 的全部内容, 来源链接: utcz.com/z/386679.html

回到顶部