Ich habe ein Python3.4-Skript. Ich möchte eine Benachrichtigung an den Desktop senden. Wie gehe ich in Python damit um? Kann ich notify-send verwenden?
Ich benutze Ubuntu 14.04.
#in my script
if something:
notify-send 'Here is a notification !'
python
python3
notify-send
TotuDoum
quelle
quelle
subprocess
ist die Standardbibliothek, die mit Python verteilt wird. Daher ist es nicht erforderlich, es als Bibliothek eines Drittanbieters zu installieren. [Ref: Docs.python.org/2/library/index.html]notify-send
. Oder zumindest auf Kubuntu muss man. Vielleicht wird es standardmäßig unter Ubuntu bereitgestellt, in diesem Fall ist es in der Tat die beste Lösung.