Seoseb 🔎 Seb Adler · @seoseb
138 followers · 159 posts · Server seocommunity.social

@vladiliescu

nice thing - will definitely have a look on it. thanks for sharing.

use those progress bars everywhere when needed with I like them a lot, too :)
🔗 tqdm.github.io/

#tqdm

Last updated 1 year ago

Yann Büchau :python: · @nobodyinperson
225 followers · 935 posts · Server fosstodon.org

@folkerschamel @birnim Yes in such cases the ETA estimation is useless, sure. But take or for example. Both just try their best at estimating an eta while iterating over a sequence (or more complex structure). If ETA it's wrong, okay. But it's a huge difference between knowing if there's 10000 steps or 100 needed. Any kind of progress display is better than none. Unfortunately you can't even query SCons reliably while it's running how many steps are left... No watching wc -l...

#tqdm #pythonrich

Last updated 1 year ago

JoeJoh · @JoeJoh
7 followers · 16 posts · Server tech.lgbt

Have I mentioned how much I love the python module TQDM?

#python #tqdm #progressbars

Last updated 2 years ago

Thomas Arildsen · @arildsen
33 followers · 96 posts · Server fosstodon.org

Is there a good way to use to just display a one-off bar with a specific value and not keep the object "alive" for updating progress?

#tqdm

Last updated 2 years ago

Thomas Arildsen · @arildsen
58 followers · 200 posts · Server fosstodon.org

Is there a good way to use to just display a one-off bar with a specific value and not keep the object "alive" for updating progress?

#tqdm

Last updated 2 years ago

Bite Code · @bitecode
119 followers · 4936 posts · Server framapiaf.org

RT @python_tip@twitter.com

Instead of

for i in tqdm(range(N)):
...

to get a progress bar while iterating from 0 to N-1, you can use a shortcut `trange`

from tqdm import trange

for i in trange(N):
...

🐦🔗: twitter.com/python_tip/status/

#tqdm

Last updated 3 years ago