📅  最后修改于: 2023-12-03 14:45:30.859000             🧑  作者: Mango
notify
是一个Python package,它为命令行提供桌面通知。使用它可以使消息通知变得更加方便且快捷,从而大大提高开发效率。
在终端中输入以下命令安装:
pip install notify
from notify import notify
notify(title="Hello, World!", message="Welcome to Notify", app_name="Python Notify")
其中:
title
: 标题字符串。message
:消息字符串。app_name
:应用名称字符串。在终端运行上面的代码会弹出一个桌面通知,其标题为“Hello, World!”,消息为“Welcome to Notify”,并显示应用名称为“Python Notify”。
除了基本用法外还有其他可选参数,比如:
app_icon
:在通知中显示的图标路径。timeout
:通知显示时间(毫秒)。import time
from notify import notify
for i in range(10):
notify(title="Counting...", message=str(i), app_name="Python Notify", timeout=1000)
time.sleep(1)
以上代码会在桌面上弹出10次通知,每个通知显示一个数字,每次间隔1秒。