답변:
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과 함께 배포되는 표준 라이브러리입니다. 따라서 타사 라이브러리로 설치할 필요가 없습니다. [ref : docs.python.org/2/library/index.html]
notify-send
. 또는 적어도 쿠분투에서해야합니다. 어쩌면 우분투에서 기본적으로 제공 될 수도 있습니다.이 경우 실제로 최상의 솔루션입니다.