progress bar - python progression bar not in IDE but UI visually after running the program? -
i saw many different codes , examples progression bar. none of them shows in ui format. shows in ide not going work if user not going ide run it. don't have pyqt can't use create progress bar in way. there other ways create progression bar user can see after running program, not via ide.
here code very basic text progress bar:
class progressbar(): def __init__(self, title, length=40): self.bar_length = length self.title = title print('{}\t['.format(self.title) + ' ' * self.bar_length + ']', end='') def update(self, val): # round 0 self.bar_length bars = round(val * self.bar_length) print('\r{}\t['.format(self.title) + '#' * bars + ' ' * (self.bar_length - bars) + ']\t{0:.2f}%'.format( val * 100), end='') def close(self): print('')
you use this:
bar = progressbar("text beside progress bar") while myloopcondition == true # loop want show progress of ... bar.update(new percentage) # decimal number 0-1 bar.close()
whatever program use make executable should have way of displaying terminal when run program.
you should getting pyqt though
Comments
Post a Comment