A python progress bar
pip install minibar
import minibar
import time
for i in minibar.bar(range(100)):
time.sleep(0.05)
Output:
template = "{i}/{total} {bar} {elapsed}s {eta}"
for i in minibar.bar(range(100), template=template):
time.sleep(0.05)
The following widgets are avaliable:
{i}
The numeric progress counter.{total}
The total value.{bar}
The progress bar.{elapsed}
The time ellapsed in seconds.{eta}
The estimated time to finish.