I would like to update a Label in my GUI to be a sort of progress bar, display how complete a data transfer is.
Everywhere I look, people say to use the textvariable
option of Label and then to set the string and the label updates. This does not work for me. The label updates at the end of the data collection loop. I don't know too much about programming in depth but I imagine that Python is not refreshing Tkinter until after it is finished with the data collection loop rather than mid loop.
Here's the data collection loop:
def getdata(self, filename):
data=[]
count=0
percentage=0
self.ser.write('$get\r\n')
total=int(self.ser.readline().split()[0])
line=self.ser.readline()
while line != '':
data.append(line)
count+= 1
if percentage != str(round(float(count)/total,2)):
menu.percentage.set(str(round(float(count)/total,2)*100)+'% Completed')
#^^^menu.percentage is the textvariable of the Label I want updated^^^#
print str(round(float(count)/total,2)*100)+'% Completed'
percentage = str(round(float(count)/total,2))
line=self.ser.readline()
outfile=open(filename, 'w')
outfile.writelines(data)
My question is: Is there some sort of command that will update the Label in the GUI in realtime?