公曆轉農曆重要節日並發送line_notify
公曆轉農曆重要節日並發送line_notify 功能說明: 當初一,五,十五,還有農曆重要節日,會發送圖片和訊息到手機,在node-red dashboard上也可看見今日的公曆和對應的農曆。 第一步: 打開CMD並下載公曆轉農曆 ''' pip install requests lunarcalendar ''' 安裝好後用vscode寫程式,這個程式碼要給node-red的exec節點執行用的 然後去line notify申請token import datetime from lunarcalendar import Converter , Solar , Lunar , DateNotExist import requests # 定義重要的農曆節日 important_festivals = { ( 1 , 1 ): "春節" , ( 1 , 15 ): "元宵節" , ( 5 , 5 ): "端午節" , ( 7 , 7 ): "七夕情人節" , ( 8 , 15 ): "中秋節" , ( 9 , 9 ): "重陽節" , ( 2 , 2 ): "媽媽農曆生日" # ... 其他節日 } def line_notify ( message , image_url = None ): # 使用LINE Notify line_notify_token = '自行到line_notify申請token' line_notify_api = 'https://notify-api.line.me/api/notify' headers = { 'Authorization' : f 'Bearer { line_notify_token } ' , } data = { 'mes...