mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-29 13:00:32 +01:00
8 lines
217 B
Text
8 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)):
|
||
|
...
|