Open sebhahn opened 5 years ago
Today the quick answer is "no". The progress bar on the bokeh dashboard would update nicely though. You might consider trying to use that instead?
Things could be changed though. I encourage you to look at the source code the Progress or MultiProgress plugins if you're interested in improving things here.
Thanks! I'll give it a try.
@sebhahn are you still interested in working on this? Should we keep this issue open to track that, or should it be closed?
As a workaround for someone looking for this you can use,
from tqdm.notebook import tqdm
for future in tqdm(as_completed(computed_futures), total=len(computed_futures)):
...
Is it possible to use as_completed and progress together? Or can I update a progressbar when a new future will be ready/iterated in as_completed?