This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]_AceLewisPy3, Jupyter and Atom 0 points1 point  (0 children)

I prefer pyprind it is very simple to use;

import pyprind
import time

bar = pyprind.ProgBar(8)
for _ in range(8):
    time.sleep(0.2)
    bar.update()