windows10定時調起系統通知,每一個小時提醒該喝水了...
阿新 • • 發佈:2022-01-28
win10toast是一個windows通知的出發框架,使用它可以輕鬆的調起系統通知。通過它可以很方便的做一個定時通知的功能應用。
安裝調起通知的依賴庫
pip install win10toast
匯入相關的第三方依賴庫
from win10toast import ToastNotifier # 匯入系統通知物件
import time # 系統時間模組
import datetime
from threading import Timer # 定時器
初始化通知呼叫物件
notify = ToastNotifier() # 初始化系統通知物件
初始化windows通知相關的引數,設定定時通知間隔時間等。
notify_head = '主人,來通知啦!'
notify_min = 1.0
notify_text = '已經過了' + str(int(notify_min)) + '分鐘了,該喝水了!'
notify_sen = notify_min * 1
通知調起時,是使用win10toast的show_toast()函式,引數和定義如下面。
''' def show_toast(self, title="Notification", msg="Here comes the message", icon_path=None, duration=5, threaded=False): """Notification settings. :title: notification title :msg: notification message :icon_path: path to the .ico file to custom notification :duration: delay in seconds before notification self-destruction """ '''
show_toast()函式的使用,採用timer定時器來定時的調起應用傳送通知。
def show_toast(): print('當前時間:%s' % (datetime.datetime.now().strftime('%Y-%m-%d %H:%M:%S'))) notify.show_toast(f"{notify_head}", f"{notify_text}", duration=5, threaded=True, icon_path='水杯.ico') while notify.notification_active(): time.sleep(0.005) timer = Timer(notify_sen, show_toast) timer.start()
主函式入口呼叫。
if __name__ == '__main__':
show_toast()
我是 [Python 集中營]、很高興您看到了最後, 我是一個專注於 Python 知識分享的公眾號,希望可以得到您的關注~
【往期精彩】
百度圖片下載器2.0
gif動態圖片生成器,多張圖片組合後生成動圖...
python幾個常見的資料處理操作,一行程式碼就能完成!
過年了,用 PyQt5 生成一副春聯吧...
記錄一下python中的十大%佔位符對應的格式化...
歡迎關注作者公眾號【Python 集中營】,專注於後端程式設計,每天更新技術乾貨,不定時分享各類資料!