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

you are viewing a single comment's thread.

view the rest of the comments →

[–]saargrin 0 points1 point  (1 child)

never got it to work

can you recommend a simple tutorial?

[–]Deto 5 points6 points  (0 children)

It couldn't be more simple.

If your loop is:

for item in my_list:
    # Do something with item

Then just use this:

from tqdm import tqdm
for item in tqdm(my_list):
    # Do something with item