我一直在慢慢学习 Tkinter 和面向对象的编程,但我已经把自己编程到了这个角落。请原谅我对此缺乏批判性思考,但我已经问过我认识的每个人,谁比我更了解 python,我们无法在这里找到一个可行的解决方案。
我有一个正在开发的 gui 应用程序,旨在允许用户输入股票代码,为每个代码创建新标签,然后定期更新每个标签。(有点像一个非常基本的 etrade 应用程序或其他东西)。我发现没有 gui 很容易做到这一点,因为我可以说:
while True:
sPrice = get_stock_price(s)
print sPrice
但我已将我的 get_stock_price(s) 函数绑定到一个按钮,该按钮会生成一个子框架和一个包含在其中的标签。我面临的问题是标签不会更新。一位朋友建议添加另一种方法来更新标签,但是我知道如何持续更新它的唯一方法是做
while True:
# get new price
# update the label
# time.sleep(~1 minute?)
这会导致我的 gui 窗口永远冻结和旋转。我一直在阅读与这种特殊情况相关的所有其他线程,并且看到了许多不同的建议;不要在主线程中调用睡眠,不要使用 root.update,使用事件,调用 root.something.after(500, function) 并且我已经尝试实现。我留下的是一段代码,仍然会检索我的股票价值,但不会更新它们,还有一些我不知道如何更新或在哪里调用我的代码的方法。
我希望的是(可能很长,我知道。对不起!)解释我做错了什么,以及如何解决它的建议。我真的很想自己理解和解决这个问题,但是只要对代码解决方案进行解释,它们就会很棒。
提前非常感谢!!!
PS:到目前为止,这是我的代码:
from Tkinter import *
import urllib
import re
import time
class MyApp(object):
def __init__(self, parent):
self.myParent = parent
self.myContainer1 = Frame(parent)
self.myContainer1.pack()
self.createWidgets()
button1 = Button(self.myContainer1, command = self.addStockToTrack)
self.myContainer1.bind("<Return>", self.addStockToTrack)
button1.configure(text = "Add Symbol")
button1.pack()
def createWidgets(self):
# title name
root.title("Stock App")
# creates a frame inside myContainer1
self.widgetFrame = Frame(self.myContainer1)
self.widgetFrame.pack()
# User enters stock symbol here:
self.symbol = Entry(self.widgetFrame)
self.symbol.pack()
self.symbol.focus_set()
def addStockToTrack(self):
s = self.symbol.get()
labelName = str(s) + "Label"
self.symbol.delete(0, END)
stockPrice = get_quote(s)
self.labelName = Label(self.myContainer1, text = s.upper() + ": " + str(stockPrice))
self.labelName.pack()
self.myContainer1.after(500, self.get_quote)
def updateStock(self):
while True:
labelName = str(s) + "Label"
stockPrice = get_quote(s)
self.labelName = Label(self.myContainer1, text = s.upper() + ": " + str(stockPrice))
self.labelName.pack()
time.sleep(10)
def get_quote(symbol):
base_url = 'http://finance.google.com/finance?q='
content = urllib.urlopen(base_url + symbol).read()
m = re.search('id="ref_\d*_l".*?>(.*?)<', content)
if m:
quote = m.group(1)
else:
quote = 'Not found: ' + symbol
return quote
root = Tk()
myapp = MyApp(root)
root.mainloop()