summaryrefslogtreecommitdiff
path: root/python/tqdm/README
diff options
context:
space:
mode:
Diffstat (limited to 'python/tqdm/README')
-rw-r--r--python/tqdm/README7
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)):
+ ...