日本免费高清视频-国产福利视频导航-黄色在线播放国产-天天操天天操天天操天天操|www.shdianci.com

學無先后,達者為師

網站首頁 編程語言 正文

一文教你利用Python制作一個生日提醒_python

作者:星安果 ? 更新時間: 2023-02-02 編程語言

在國內,大部分人都是過農歷生日,然后借助日歷工具獲取農歷日期對應的陽歷日期,以這一天來過生!

這里還有一個痛點,即:每一年的農歷生日對應的陽歷日期都不一樣

本篇文章將教你利用 Python 制作一個簡單的生日提醒

1. 實戰

具體操作步驟如下

1-1??安裝依賴

#?安裝依賴
pip3?install?zhdate

pip3?install?pymysql

其中,zhdate 模塊用于中國農歷、陽歷之間的轉換,并且支持日期差額計算

項目地址:

https://github.com/CutePandaSh/zhdate

1-2??創建數據表

創建一條數據表

create?table?birthday
(
????id????????int?auto_increment
????????primary?key,
????name??????varchar(100)??not?null?comment?'名稱',
????yl_birth??varchar(100)??not?null?comment?'陰歷生日',
????remark????varchar(100)??null?comment?'備注',
????is_delete?int?default?0?null?comment?'0:正常? 1:刪除'
)
????comment?'生日';

然后,將需要提醒用戶的姓名、農歷生日等數據寫入

PS:這里陰歷生日格式是 mm-dd,比如:10-25

1-3??查詢數據

import?pymysql

class?Birth(object):
????def?__init__(self):
????????self.db?=?pymysql.connect(host='**',
??????????????????????????????????user='root',
??????????????????????????????????password='**',
??????????????????????????????????database='xag')
????????self.cursor?=?self.db.cursor()

????def?__get_births(self):
????????#?獲取所有數據
????????self.cursor.execute("""
?????????????????????????????select?name,yl_birth,remark?from?birthday?where?is_delete=0;""")

????????datas?=?list(self.cursor.fetchall())

1-4??遍歷,獲取距離今天的天數

遍歷上面的數據,將陰歷轉為陽歷,然后計算出距離今天的天數

from?zhdate?import?ZhDate

...
??def?__get_diff(self,?birth):
????????"""
????????根據農歷生日,獲取當前日期距離的時間(天)
????????:param birth:?農歷生日,格式:10-25
????????:return:
????????"""
????????#?1、獲取今日的農歷日歷
????????now?=?str(datetime.now().strftime('%Y-%m-%d')).split("-")
????????#?年、月、日
????????year,?month,?day?=?int(now[0]),?int(now[1]),?int(now[2])

????????#?1、獲取陰歷生日,轉為陽歷
????????birth_month?=?int(birth.split("-")[0].strip())
????????birth_day?=?int(birth.split("-")[-1].strip())
????????birth_ying?=?ZhDate(year,?birth_month,?birth_day)

????????#?轉為陽歷
????????birth_yang?=?birth_ying.to_datetime()

????????#?2、計算距離當前日期的時間間隔(天)
????????today?=?datetime.now().strftime('%Y-%m-%d')
????????d1?=?datetime.strptime(today,?'%Y-%m-%d')

????????diff_day?=?(birth_yang-d1).days
????????return?diff_day

...
?#?遍歷數據
????????for?item?in?datas:
????????????name?=?item[0]
????????????birth?=?item[1]
????????????nickname?=?item[2]
????????????diff?=?self.__get_diff(birth)
...

1-5??組裝數據及消息推送

通過時間間隔,在提前一周、生日當天做一個提醒

最后,將組裝好的消息通過企業微信機器人發送出去

import?requests
import?json

...
???def?send_wechat(self,?msg:?str):
????????"""發送信息到企業微信"""
????????#?這里填寫你的機器人的webhook鏈接
????????url?=?'https://qyapi.weixin.qq.com/cgi-bin/webhook/send?key**'
????????headers?=?{"Content-Type":?"text/plain"}
????????data?=?{
????????????"msgtype":?"text",
????????????"text":?{
????????????????"content":?msg
????????????}
????????}
????????#?發送消息
????????requests.post(url,?headers=headers,?data=json.dumps(data))
...

原文鏈接:https://mp.weixin.qq.com/s/CKscpZObQQKXdhmQFGF1ug

欄目分類
最近更新