Skip to content

Instantly share code, notes, and snippets.

@AlexEshoo
Created May 1, 2018 19:40
Show Gist options
  • Save AlexEshoo/acf76f5c6f64d212972759282d9b1f39 to your computer and use it in GitHub Desktop.
Save AlexEshoo/acf76f5c6f64d212972759282d9b1f39 to your computer and use it in GitHub Desktop.
Python Progress Bar
def printProgressBar (iteration, total, prefix = '', suffix = '', decimals = 1, length = 100, fill = '█'):
"""
Source: https://stackoverflow.com/a/34325723/4017197
Call in a loop to create terminal progress bar
@params:
iteration - Required : current iteration (Int)
total - Required : total iterations (Int)
prefix - Optional : prefix string (Str)
suffix - Optional : suffix string (Str)
decimals - Optional : positive number of decimals in percent complete (Int)
length - Optional : character length of bar (Int)
fill - Optional : bar fill character (Str)
"""
percent = ("{0:." + str(decimals) + "f}").format(100 * (iteration / float(total)))
filledLength = int(length * iteration // total)
bar = fill * filledLength + '-' * (length - filledLength)
print('\r%s |%s| %s%% %s' % (prefix, bar, percent, suffix), end = '\r')
# Print New Line on Complete
if iteration == total:
print()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment