Réponses:
Vous pouvez utiliser notify-send
comme commande externe:
import subprocess as s
s.call(['notify-send','foo','bar'])
Ou vous pouvez utiliser le notify2
module ( sudo apt install python3-notify2
):
import notify2
notify2.init('foo')
n = notify2.Notification('foo', 'bar')
n.show()
Il y a plus d'exemples inclus dans le package (voir /usr/share/doc/python3-notify2/examples/
).
subprocess
est la bibliothèque standard distribuée avec Python. Par conséquent, pas besoin de l'installer en tant que bibliothèque tierce. [réf: docs.python.org/2/library/index.html]
notify-send
. Ou du moins sur Kubuntu, vous devez. Peut-être qu'il est fourni par défaut sur Ubuntu, dans ce cas, c'est en effet la meilleure solution.