diff options
Diffstat (limited to 'python/tqdm/README')
-rw-r--r-- | python/tqdm/README | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/python/tqdm/README b/python/tqdm/README new file mode 100644 index 0000000000..5700d663c3 --- /dev/null +++ b/python/tqdm/README @@ -0,0 +1,7 @@ +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)): + ... |