mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-14 21:56:41 +01:00
6cee8be0a4
Signed-off-by: Dimitris Zlatanidis <d.zlatanidis@gmail.com>
9 lines
247 B
Text
9 lines
247 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)):
|
|
...
|
|
|
|
Optional dependency: python3
|