IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> Python知识库 -> Python 定时发送天气邮件 -> 正文阅读

[Python知识库]Python 定时发送天气邮件

纪念一下写给女朋友的定时邮件~

效果如图?

一、获取天气

def getWeather1(city):
    try:
        appid = os.environ["TIANQI_APPID"]
        appsecret = os.environ["TIANQI_APPSEC"]
    except KeyError:
        appid = 'x'x'x'x'  #www.tianqiapi.com申请的appid,有免费 api
        appsecret = 'xxxx'  #在www.tiaSnqiapi.com申请的appsecret
    url = 'https://tianqiapi.com/api?version=v1&city={city}&appid={appid}&appsecret={appsecret}'.format(city=city,
                                                                                                        appid=appid,
                                                                                                        appsecret=appsecret)
    res = requests.get(url)
    if res.json().get("errcode", 0) > 0:
        print(res.json().get("errmsg"))
        exit(0)
    data = res.json()['data']
    weather = {
        'today': data[0],
        'tomorrow': data[1],
        'aftertomorrow': data[2]
    }
    today = weather['today']
    tomorrow = weather['tomorrow']
    aftertomorrow = weather['aftertomorrow']

    today_avg = (int(today['tem1'][:-1]) + int(today['tem2'][:-1])) / 2
    tomorrow_avg = (int(tomorrow['tem1'][:-1]) + int(tomorrow['tem2'][:-1])) / 2
    wdc ='紫外线指数:'+today['index'][0]['level'] +'\n'+ \
           '穿衣指数:'+today['index'][3]['desc']+'\n'
    wdc += 'tips:'+today['air_tips']
    today_w = '今天 {} {}/{} 风力:{} 空气指数: {}/{} 日出日落: {}/{}'.format(today['wea'], today['tem1'], today['tem2'],today['win_speed'],today['air'],
                                                       today['air_level'], today['sunrise'], today['sunset'])

    tomorrow_w = '明天 {} {}/{} 风力:{} 空气指数:{}/{} 日出日落: {}/{}'.format(tomorrow['wea'], tomorrow['tem1'], tomorrow['tem2'],tomorrow['win_speed'],tomorrow['air'],
                                                              tomorrow['air_level'], tomorrow['sunrise'],
                                                              tomorrow['sunset'])

    aftertomorrow_w = '后天 {} {}/{} 风力:{} 空气指数:{}/{} 日出日落: {}/{}'.format(aftertomorrow['wea'], aftertomorrow['tem1'],
                                                                   aftertomorrow['tem2'],aftertomorrow['win_speed'],aftertomorrow['air'],
                                                                   aftertomorrow['air_level'], aftertomorrow['sunrise'],
                                                                   aftertomorrow['sunset'])
    todaytime = datetime.now()
    starttime = datetime.strptime('2020-08-21','%Y-%m-%d')
    days = (todaytime-starttime).days
    todaydate = str(todaytime.year) + '年' + str(todaytime.month) + '月' + str(todaytime.day) + '日'
    total = '早安!  亲爱的xx,xxxxx~愿你每天开开心心!\n'+ \
            '今天是:'+todaydate+','+'是和xxx在一起的第'+str(days)+'天,mua~\n'+ \
            '近日天气如下,xxx要注意保暖哦!\n'+ \
            today_w + '\n' + wdc +'\n'+ \
            tomorrow_w + '\n' + \
            aftertomorrow_w
    return total

二、获取金山词霸每日一句

def get_news():
    # 获取金山词霸的每日一句的英文和翻译
    url = "http://open.iciba.com/dsapi/"
    r = requests.get(url)
    content = r.json()['content']
    note = r.json()['note']
    news = content + '\n' + \
            note
    return str(news)

三、获取Sweet word

def getSweetWord():
    url = 'https://chp.shadiao.app/api.php'
    res = requests.get(url)
    return res.text

四、发送邮件

def sendemail(toaddr='', message=''):
    fromaddr = 'xxxxx@qq.com'  # 你的邮箱
    password = 'xxxxxfslfbfgg'  # 你的密码,注意不是qq密码
    smtp_server = 'smtp.qq.com'  # smtp地址
    msg = MIMEText(message, 'plain', 'utf-8')
    msg['From'] = _format_addr('xxx <%s>' % fromaddr)
    msg['To'] = _format_addr('xxx <%s>' % toaddr)
    todaytime = datetime.now()
    starttime = datetime.strptime('2020-08-21', '%Y-%m-%d')
    days = (todaytime - starttime).days
    emailtitle= '爱你的第'+str(days)+'天'
    msg['Subject'] = Header(emailtitle, 'utf-8').encode()
    server = smtplib.SMTP_SSL(smtp_server, 465)
    server.set_debuglevel(1)
    server.login(fromaddr, password)
    server.sendmail(fromaddr, [toaddr], msg.as_string())
    server.quit()
    return

五、组织信息,并发送

def dailymorning():

    message = getWeather1('xxx') + '\n' + \
              get_news() + '\n' + \
              getSweetWord() + '\n' + \
                '来自最爱你xxx'

    receivers = [['xxxx@qq.com'], ['xxxxxx@qq.com']]
    for i in range(len(receivers)):
        dailyemail.sendemail(toaddr=receivers[i], message=message)
        print('send receiver[{}] success'.format(receivers[i]))

六、win10系统设置定时启动程序。

  Python知识库 最新文章
Python中String模块
【Python】 14-CVS文件操作
python的panda库读写文件
使用Nordic的nrf52840实现蓝牙DFU过程
【Python学习记录】numpy数组用法整理
Python学习笔记
python字符串和列表
python如何从txt文件中解析出有效的数据
Python编程从入门到实践自学/3.1-3.2
python变量
上一篇文章      下一篇文章      查看所有文章
加:2022-02-04 10:59:51  更:2022-02-04 11:01:25 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/16 2:57:45-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码