web-dev-qa-db-ja.com

PythonでAppIndicatorを作成する方法は?

私はPythonの知識がありませんが、ubuntuがPythonを推奨しているため、appinidcatorに使用します。

enter image description here

.pyファイルのコードは次のとおりです。

#!/usr/bin/python

import appindicator
import pynotify
import gtk

a = appindicator.Indicator('wallch_indicator', '/home/paul/scripts/wallch_tray.png', appindicator.CATEGORY_APPLICATION_STATUS)
a.set_status( appindicator.STATUS_ACTIVE )
m = gtk.Menu()
ci = gtk.MenuItem( 'Check' )
qi = gtk.MenuItem( 'Quit' )

m.append(ci)
m.append(qi)

a.set_menu(m)
ci.show()
qi.show()

def checkStatus(item):
        import urllib2
        htmltext = urllib2.urlopen('http://youtube.com/wichitsombat').readlines()
        neededline = []
        for line in htmltext:
                if line.strip().find('stat-value') > -1:
                        neededline.append(line) 

        n = neededline[0]
        subs = n[n.find('>')+1:n.rfind('<')]
        n = neededline[1]
        views = n[n.find('>')+1:n.rfind('<')]

        # show the notification message
        pynotify.init('wallch_indicator')
        n = pynotify.Notification('<b>Paulgramming Channel</b>',
                'subscribers: %s   views: %s'%(subs, views),
                'notification-message-im')
        n.show()

ci.connect('activate', checkStatus)

def quit(item):
        gtk.main_quit()

qi.connect('activate', quit)

gtk.main()

このビデオから取ったコード Pythonを使用して通知プログラムを作成する方法

python wallch_indicator.pyを実行すると実行し続けますが、インジケーターが表示されません。何が間違っていますか?

6
Leon Vitanos

アイコン/home/paul/scripts/wallch_tray.pngへのパスを確認します

4
wojox