我是 Python 新手,在获取某些 HTML 文件/url 的内容并使用进度条显示状态时遇到问题:
这是我使用的相关代码:
进度条:
def createProgressbar(self):
self.progressbarVar = StringVar()
self.progressbar = ttk.Progressbar( self.masterWindow, variable=self.progressbarVar, length=400, maximum=100, mode='determinate' )
self.progressbar.place(x=100, y=760)
self.progressbarStatus = Label( self.masterWindow, text='Please wait ...', bg='#fafafa', fg='#333', bd=0 )
self.progressbarStatus.place(x=100, y=730)
阅读 HTML:
def readHTML(self):
# Set new progressbar max, eg. 20 for 20 files to read
self.progressbar.config(maximum=self.LinkListItemCount)
# Progressbar Counter
i=1
# example for self.LinkListByCatDict
# self.LinkListByCatDict = {'cat1': ['/test/asd.html', '/test/asd2.html'], 'cat2': ['/test/asd.html', '/test/asd2.html']}
for item in self.LinkListByCatDict.items():
actCategory = item[0]
for linkItem in item[1]:
url = 'http://www.example.com'+linkItem
try:
req = urllib.request.Request( url )
open = urllib.request.urlopen( req )
requestContent = open.read()
if self.debug == True:
print('OK: '+url)
except:
if self.debug == True:
print('Error: '+url)
# Progressbar update
self.progressbarVar.set(i)
if self.debug == True:
print('Progressbar act: '+str(i))
i += 1
一般来说,这可以正常工作,但是在处理循环时,整个界面只显示一个沙滩球(Mac OS)。在循环结束时,进度条从 0 直接跳到 100%。
有没有更好的方法来做到这一点,而不挂断界面?