Hello,
Thank you for this package, animations are really cool.
I would like to display several times progress bar, and clear the previous progress bar before starting the new one.
It seems not possible to clear a progress bar once it's finished or did I miss something ?
for epoch in range(10):
with alive_bar(100, bar="blocks", title=f"[Epoch: {epoch}]") as bar:
for i in range(100):
time.sleep(0.01)
bar()

Thanks
Hello,
Thank you for this package, animations are really cool.
I would like to display several times progress bar, and clear the previous progress bar before starting the new one.
It seems not possible to clear a progress bar once it's finished or did I miss something ?
Thanks