I want to create a progress bar that updates asynchronously in a Jupyter laptop (with a kernel ipython)
Example
In [1]: ProgressBar(...)
Out[1]: [|||||||||------------------] 35% # this keeps moving
In [2]: # even while I do other stuff
I plan to deploy a background thread to check and update the move. I am not sure how to update the output (or even if it is possible.)
source
share