blob: 2e90cc0c5ad98622fc76955f723930a88830f7ea (
plain)
1
2
3
4
5
6
7
8
9
|
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
|