aboutsummaryrefslogtreecommitdiff
path: root/python/tqdm/README
diff options
context:
space:
mode:
authorDimitris Zlatanidis <d.zlatanidis@gmail.com>2016-10-20 20:11:45 +0700
committerWilly Sudiarto Raharjo <willysr@slackbuilds.org>2016-10-20 20:11:45 +0700
commit40027df8ee05f2e0e338a26b71246447c619ae4f (patch)
tree1b026b49180e6b219f21759979521d19525d69b3 /python/tqdm/README
parent292665f2a72d8bfba4887e227024714c2b3e6e9d (diff)
python/tqdm: Added (progress bar for Python).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
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 0000000000000..5700d663c3ec7
--- /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)):
+ ...