Python 发送 WIN 10 通知消息
Posted 简简单单OnlineZuozuo
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python 发送 WIN 10 通知消息相关的知识,希望对你有一定的参考价值。
Python 发送 WIN 10 通知消息
1、安装库
pip install win10toast
2、编写代码
from win10toast import ToastNotifier
import _thread
from time import sleep
"""
win10toast 的库底层为win32api、win32con和win32gui
"""
toaster = ToastNotifier()
def show_toast():
toaster.show_toast("通知标题",
"通知内容",
icon_path=None,
duration=5,
threaded=True)
def send():
_thread.start_new_thread(show_toast, ())
sleep(0.1)
if __name__ == '__main__':
send()
运行即可
以上是关于Python 发送 WIN 10 通知消息的主要内容,如果未能解决你的问题,请参考以下文章