How do I implement a progress bar in jupyter-notebook?
I\'ve done this:
count = 0
max_count = 100
bar_width = 40
while count <= max_count:
tim
You can try tqdm. Example code:
# pip install tqdm
from tqdm import tqdm_notebook
# works on any iterable, including cursors.
# for iterables with len(), no need to specify 'total'.
for rec in tqdm_notebook(items,
total=total,
desc="Processing records"):
# any code processing the elements in the iterable
len(rec.keys())
Demo: https://youtu.be/T0gmQDgPtzY