Created
April 12, 2018 15:26
-
-
Save jeasinema/6a8cf89f6168089a04416da7792293f9 to your computer and use it in GitHub Desktop.
A customized progress bar, by @id9502
This file contains 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
def bar(current, total, prefix="", suffix="", bar_sz=25, end_string=None): | |
''' | |
Usage: | |
bar(iter+1, epoch_amount, "Iters:{}/{}".format(iter, epoch_amount), end_string='') | |
''' | |
sp = "" | |
print("\x1b[2K\r", end='') | |
for i in range(bar_sz): | |
if current * bar_sz // total > i: | |
sp += '=' | |
elif current * bar_sz // total == i: | |
sp += '>' | |
else: | |
sp += ' ' | |
if current == total: | |
if end_string is None: | |
print("\r%s[%s]%s" % (prefix, sp, suffix)) | |
else: | |
if end_string != "": | |
print("\r%s" % end_string) | |
else: | |
print("\r", end='') | |
else: | |
print("\r%s[%s]%s" % (prefix, sp, suffix), end='') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment