回答:
notify-send
外部コマンドとして使用できます:
import subprocess as s
s.call(['notify-send','foo','bar'])
または、notify2
モジュール(sudo apt install python3-notify2
)を使用できます。
import notify2
notify2.init('foo')
n = notify2.Notification('foo', 'bar')
n.show()
パッケージにはさらに多くの例が含まれています(を参照/usr/share/doc/python3-notify2/examples/
)。
subprocess
は、Pythonとともに配布される標準ライブラリです。したがって、サードパーティのライブラリとしてインストールする必要はありません。[参照:docs.python.org/2/library/index.html]
notify-send
ます。または、少なくともKubuntuではする必要があります。たぶんそれはUbuntuのデフォルトで提供されているかもしれません、その場合それは確かに最良の解決策です。