Python GI Notify如何调用Gtk.main()?

时间:2013-01-21 08:38:03

标签: python notify pygobject gobject-introspection

我正在尝试创建一个Python通知应用程序。简而言之就是我想做的事:
 1.检查我的Gmail帐户
 2.显示包含未读邮件数量的通知  3.显示允许我打开铬的按钮(使用系统调用)

现在一切看起来都很好。检查邮件部分很容易。我将未读邮件计数序列化,以便通知不会每隔一分钟显示一次。它只显示我是否有新邮件 我阻塞的地方是我不知道如何创建主gtk循环以便我可以处理按钮信号。

这是我的代码:

#!/usr/bin/python


from gi.repository import Notify, Gtk, GLib
from urllib.request import FancyURLopener
from datetime import datetime, date, time, timedelta
import os.path, sys, getopt
from subprocess import call

serialisedvalue=0;
serialiseddate=0;

def callback():
        call(["chromium", "gmail.com"])

def serialise(unread):
        try:
                f = open("mailcount", "w")
                try:
                        f.write(unread+"\n") # Write a string to a file
                        f.write(datetime.now().strftime('%b %d %Y %I:%M%p'))
                finally:
                        f.close()
        except IOError:
                pass

def deserialise():
        global serialisedvalue
        global serialiseddate
        try:
                f = open("mailcount", "r")
                try:
                        serialisedvalue = f.readline().rstrip()
                        serialiseddate = datetime.strptime(f.readline(), '%b %d %Y %I:%M%p')
                finally:
                        f.close()
        except IOError:
                pass

def notif(unread):
        Notify.init ("New Mail")
        if unread != "1":
                Hello=Notify.Notification.new ("New mail","You have "+unread+" unread mails","/usr/share/icons/Faenza/actions/96/mail-forward.png")
        else :
                Hello=Notify.Notification.new ("New mail","You have "+unread+" unread mails","/usr/share/icons/Faenza/actions/96/mail-forward.png")
        Hello.add_action('action', 'Read', callback, None, None)
        Hello.show ()

def main(argv):

        notify=0
        forced=0
        try:
                opts, args = getopt.getopt(argv,"nf",['notify','force-notify'])
        except getopt.GetoptError:
                print("unreadgmail.py [-n --notify] [-f --force-notify")
                sys.exit(2)
        for opt,args in opts:
                if opt in ("-n", "--notify"):
                        notify=1
                elif opt in ("-f","--force-notify"):
                        forced=1
        url = 'https://%s:%s@mail.google.com/mail/feed/atom' % ("myaccount", "mypassword")
        opener = FancyURLopener()
        page = opener.open(url)
        contents = page.read().decode('utf-8')
        ifrom = contents.index('<fullcount>') + 11
        ito   = contents.index('</fullcount>')
        unread = contents[ifrom:ito]
        print("Unread messages : "+unread)
        if notify==1 and forced==0:
                if os.path.exists("mailcount"):
                        deserialise()
                else:
                        serialise(unread)
                        deserialise()
                if unread != "0":
                        if unread != serialisedvalue:
                                notif(unread)
                                serialise(unread)
                        elif ((datetime.now() - serialiseddate) > timedelta(hours=1)):
                                notif(unread)
        if forced==1:
                notif(unread)
        GLib.MainLoop().run()




if __name__ == "__main__":
   main(sys.argv[1:])

我记得我的通知过去常常与pygtk和pynotify一起使用。虽然我想更新我的代码,但由于我丢失了最后一个代码,我对此没有任何线索。在我的主要调用Gtk.main()只是阻止该程序,直到我杀死它。

我正在使用Gnome3.6,Archlinux和python3.3 那么有没有人知道在程序结束之前如何“等待”信号处理程序被点击?实际上它运行正常,但脚本只在显示通知时结束,并且它不会等待信号。

非常感谢:)

编辑:我的问题的更多细节: The final result
如您所见,该程序已经结束,而不是等待信号。这就是我现在想要解决的问题。

1 个答案:

答案 0 :(得分:0)

如果您没有使用GTK + - 据我所知,您可以在GLib.MainLoop().run()功能结束时调用main以保持程序正常运行