使用Python在Windows 10上显示通知信息

2022/2/8 7:14:06

本文主要是介绍使用Python在Windows 10上显示通知信息,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

此功能的实现主要使用 python 第三方库 win10toast

https://github.com/jithurjacob/Windows-10-Toast-Notifications

安装**win10toast**

pip install win10toast 

使用示例

from win10toast import ToastNotifier
toast = ToastNotifier()
toast.show_toast(title="This is a title", msg="This is a message",
                 icon_path=r"C:\Program Files\Internet Explorer\images\bing.ico", duration=10)

效果展示

img



这篇关于使用Python在Windows 10上显示通知信息的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程