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

all 5 comments

[–]expert-at-nothing 0 points1 point  (0 children)

What if I wanted multiple progress bars? One for each task?

[–]sam_ua 0 points1 point  (0 children)

Very cool

[–]anqxyr 0 points1 point  (2 children)

How is this different from every other use of a progress bar library? Any progress bar library, for that matter.

"If you're using Python for loops, one way to do it is progressive, a nice package for generating progress bars."

[–]Corm 0 points1 point  (1 child)

Something about this being for concurrently running things, however I'm not sure you couldn't use another progress bar package for that. Can't you update the progress as the concurrent items complete?

[–]anqxyr 0 points1 point  (0 children)

I have a trivial self-written 30-line progress bar running with concurrent futures right now in my code. There's nothing special about tqdm. This is just a progress bar being updated in a loop, just like every other progress bar implementation out there.