为什么下面的ntfy命令不能与os.system()函数一起使用?

时间:2016-07-23 14:09:46

标签: python python-2.7 os.system

执行时:ntfy send 'Hello' 通过Windows cmd / Powershell,我可以获得桌面通知。但是,在Python 2.7 shell中执行以下命令时,我收到的错误是“ntfy未被识别为内部或外部命令'在cmd:

>>> import os
>>> os.system('ntfy send \'hello\'')

1 个答案:

答案 0 :(得分:1)

ntfy库是用Python编写的。因此,如果您已使用pip安装它,则可以执行以下操作:

import ntfy
ntfy.notify("My message", "Title")

您还可以指定后端。例:

ntfy.notify("Hi!", "Greeting", backend="telegram")