# -*- coding: utf-8 -*- from __future__ import print_function import sys # from https://stackoverflow.com/questions/3173320/text-progress-bar-in-the-console def print_progress(iteration, total, prefix = 'Progress', suffix = 'completed', 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') sys.stdout.flush() # Print New Line on Complete if iteration == total: print()