2

我对 Python 还很陌生。这是我的一个脚本,它从托管我们的帮助台票证的 MySQL 服务器收集信息,并在新票证到达时弹出一个消息框(使用 EasyGUI 的“msgbox()”函数)。

问题是我希望我的程序在弹出后继续处理,无论用户是否单击“确定”,即使这意味着消息框可能会不断弹出并必须一个一个地关闭;这对我来说很好。

我研究了线程,要么它不起作用,要么我做错了什么,需要一个好的指导。这是我的代码:

import MySQLdb
import time
from easygui import *

# Connect
db = MySQLdb.connect(host="MySQL.MyDomain.com", user="user", passwd="pass", db="db")
cursor = db.cursor()

# Before-and-after arrays to compare; A change means a new ticket arrived
IDarray = ([0,0,0])
IDarray_prev = ([0,0,0])

# Compare the latest 3 tickets since more than 1 may arrive in my time interval
cursor.execute("SELECT id FROM Tickets ORDER BY id DESC limit 3;")
numrows = int(cursor.rowcount)
for x in range(0,numrows):
   row = cursor.fetchone()
   for num in row:
      IDarray_prev[x] = int(num)
cursor.close()
db.commit()

while 1:
   cursor = db.cursor()
   cursor.execute("SELECT id FROM Tickets ORDER BY id DESC limit 3;")

   numrows = int(cursor.rowcount)
   for x in range(0,numrows):
      row = cursor.fetchone()
      for num in row:
         IDarray[x] = int(num)

   if(IDarray != IDarray_prev): 
      cursor.execute("SELECT Subject FROM Tickets ORDER BY id DESC limit 1;")
      subject = cursor.fetchone()
      for line in subject:
         # -----------------------------------------
         # STACKOVERFLOW, HERE IS THE MSGBOX LINE!!!
         # -----------------------------------------
         msgbox("A new ticket has arrived:\n"+line)

   # My time interval -- Checks the database every 8 seconds:
   time.sleep(8)
   IDarray_prev = IDarray[:]
   cursor.close()
   db.commit()
4

1 回答 1

2

你可以使用Python GTK+

它提供非模态使用

set_modal(False)
于 2012-04-05T18:07:19.257 回答