## 使用Python在Windows 10上显示通知信息
显示效果如下图:
![](https://img.kancloud.cn/f0/02/f002eb0aaa6b73eeaacc69122604f1cc_393x120.png)
### 安装win10toast
```
pip install win10toast
```
> 此功能实现与日志模块进行绑定。就可以实现命令窗口打印日志的同时,能够通过异步线程发送win10通知消息。
#### 使用案例
```
from win10toast import ToastNotifier
toast = ToastNotifier()
toast.show_toast(title="This is a title", msg="This is a message",
icon_path="C:\Program Files\Internet Explorer\images\bing.ico", duration=10)
```
## 问题答疑
如果出现无法显示win10消息的问题,请确认“专注助手”是否把相关消息屏蔽了。
专注助手关闭方法:
- 右键win10右下角的消息提醒;
- 选择“专注助手”
- 选择“关闭”。