web-dev-qa-db-ja.com

通知バブルにテキストメッセージを送信するにはどうすればよいですか?

ランダムテキストを.txtファイルに入れるためのpythonコードを書きました。ここで、このランダムテキストを「notify-send」コマンドを使用して通知領域に送信します。どうすればいいですか?

38
Anuroop Kuppam

常にnotify-sendをサブプロセスとして呼び出すことができます。例えば:

#!/usr/bin/env python
#-*- coding: utf-8 -*-

import subprocess

def sendmessage(message):
    subprocess.Popen(['notify-send', message])
    return

あるいは、 python-notify をインストールし、それを介して通知を呼び出すこともできます。

import pynotify

def sendmessage(title, message):
    pynotify.init("Test")
    notice = pynotify.Notification(title, message)
    notice.show()
    return

Ubuntuには利用可能なpython3-notifyパッケージがないことに注意してください。 Python 3を使用している場合、 python3-notify2 を使用する必要があります。 notify2のAPIも同じです。pynotifynotify2に置き換えるだけです。

63
Takkat

python3

notify-sendまたはsubprocessを介してos.systemを呼び出すことができますが、Notify gobject-introspection クラスを使用することは、おそらくGTK3ベースのプログラミングとより一貫しています。

簡単な例でこれを実際に示します。

from gi.repository import GObject
from gi.repository import Notify

class MyClass(GObject.Object):
    def __init__(self):

        super(MyClass, self).__init__()
        # lets initialise with the application name
        Notify.init("myapp_name")

    def send_notification(self, title, text, file_path_to_icon=""):

        n = Notify.Notification.new(title, text, file_path_to_icon)
        n.show()

my = MyClass()
my.send_notification("this is a title", "this is some text")
10
fossfreedom
import os
mstr='Hello'
os.system('notify-send '+mstr)

Mehul Mohanの質問に答え、タイトルとメッセージセクションを含む通知をプッシュする最短の方法を提案するには:

import os
os.system('notify-send "TITLE" "MESSAGE"')

これを関数に入れると、引用符で囲まれたために少し混乱するかもしれません

import os
def message(title, message):
  os.system('notify-send "'+title+'" "'+message+'"')
5
Silver Ringvee

+2018でこれを見ている人には、 notify2 パッケージをお勧めします。

これは、通知サーバーと直接通信するためにpython-dbusを使用する、notify-pythonの純粋なPythonの置き換えです。 Python 2および3と互換性があり、そのコールバックはGtk 3またはQt 4アプリケーションで動作します。

4

Notify2パッケージを使用する必要があります。これはpython-notifyの代替です。次のように使用します。

pip install notify2

そしてコード:

import notify2
notify2.init('app name')
n = notify2.Notification('title', 'message')
n.show()
3
jcofta