How do I send desktop notifications using Python 3?
You can use notify-send
as an external command:
import subprocess as s
s.call(['notify-send','foo','bar'])
Or you can use the notify2
module (sudo apt install python3-notify2
):
import notify2
notify2.init('foo')
n = notify2.Notification('foo', 'bar')
n.show()
There are more examples included in the package (see /usr/share/doc/python3-notify2/examples/
).