我有以下代码:
from Tkinter import *
from urllib import urlretrieve
import webbrowser
import ttk
def get_latest_launcher():
webbrowser.open("johndoe.com/get_latest")
global percent
percent = 0
def report(count, blockSize, totalSize):
percent += int(count*blockSize*100/totalSize)
homepage = "http://Johndoe.com"
root = Tk()
root.title("Future of Wars launcher")
Button(text="get latest version", command=get_latest_launcher).pack()
global mpb
mpb = ttk.Progressbar(root, orient="horizontal", variable = percent,length="100",
mode="determinate")
mpb.pack()
root.mainloop()
urlretrieve("https://~url~to~my~file.com",
"Smyprogram.exe",reporthook=report)
但是,如果我运行此脚本,它将不会显示进度条,它只会显示该按钮。它甚至不会下载文件,光标只会闪烁。但是,如果我关闭gui窗口,我会得到以下代码:
Traceback(most recent call last):
File "C:\Users\user\Desktop\downloader.py", line 28 in <module>
mpb = ttk.Progressbar(root, orient="horizontal", variable =
percent,length="100",mode="determinate")
File "C:\Users/user\Desktop\pyttk-0.3\ttk.py" line 1047, in __init__
Widget.__init__(self, master, "ttk::progressbar", kw)
File "C:\Users/user\Desktop\pyttk-0.3\ttk.py", line 574, in __init__
Tkinter.Widget.__init__(self, master, widgetname, kw=kw)
File "C:\Python26\lib\lib-tk\Tkinter.py", line 1930, in __init__
(widgetName, self._w) + extra + self._options(cnf))
_tkinter.TclError: this isn't a Tk applicationNULL main window
出了什么问题?
答案 0 :(得分:1)
variable = percent
错了。您必须使用作为对象的Tkinter变量。比如IntVar。
答案 1 :(得分:1)
您的代码中至少有两个问题,但它们都不会导致您说出来的错误。
首先,使用普通的python变量作为进度条的variable
属性的值。虽然这会起作用,但它不会像你期望的那样工作。您需要创建tkinter StringVar
或IntVar
的实例。此外,您还需要调用该实例的set
方法,以便进度条看到更改。
其次,在调用mainloop
之后,你永远不应该有代码。 Tkinter旨在终止mainloop
退出(通常只有在您销毁窗口后才会发生)。您将需要将呼叫转移到其他地方的urlretrieve
。