执行时:ntfy send 'Hello'
通过Windows cmd / Powershell,我可以获得桌面通知。但是,在Python 2.7 shell中执行以下命令时,我收到的错误是“ntfy未被识别为内部或外部命令'在cmd:
>>> import os
>>> os.system('ntfy send \'hello\'')
答案 0 :(得分:1)
ntfy
库是用Python编写的。因此,如果您已使用pip
安装它,则可以执行以下操作:
import ntfy
ntfy.notify("My message", "Title")
您还可以指定后端。例:
ntfy.notify("Hi!", "Greeting", backend="telegram")