Last active
March 3, 2017 22:09
-
-
Save greenstick/c34d044225293c9b191f to your computer and use it in GitHub Desktop.
A customizeable Python progress bar. Call (instantiate) outside of a loop and update inside of the for loop with the current loop index.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Print iterations progress | |
def printProgressBar (iteration, total, prefix = '', suffix = '', decimals = 1, length = 100, fill = '█'): | |
""" | |
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() | |
# | |
# Sample Usage | |
# | |
from time import sleep | |
# make a list | |
items = list(range(0, 57)) | |
i = 0 | |
l = len(items) | |
# Initial call to print 0% progress | |
printProgressBar(i, l, prefix = 'Progress:', suffix = 'Complete', length = 50) | |
for item in items: | |
# Do stuff... | |
sleep(0.1) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment