mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-14 21:56:41 +01:00
40027df8ee
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
7 lines
217 B
Text
7 lines
217 B
Text
A fast, extensible progress bar for Python. Instantly make your
|
|
loops show a smart progress meter - just wrap any iterable with
|
|
tqdm(iterable), and you're done!
|
|
|
|
from tqdm import tqdm
|
|
for i in tqdm(range(9)):
|
|
...
|