ctdcal.odf_io.print_progress_bar¶
- ctdcal.odf_io.print_progress_bar(iteration, total, prefix='', suffix='', decimals=1, length=100, fill='█', printEnd='\r')[source]¶
A progress bar, helpful for implementing into loops or highlighting progression through processing.
https://stackoverflow.com/questions/3173320/text-progress-bar-in-terminal-with-block-characters/13685020 credit: u/Greenstick 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) printEnd - Optional : end character (e.g. “
“, ” “) (Str)