aboutsummaryrefslogtreecommitdiffstats
path: root/misc/py-progressbar/pkg-descr
diff options
context:
space:
mode:
authorlioux <lioux@FreeBSD.org>2010-04-07 22:13:06 +0800
committerlioux <lioux@FreeBSD.org>2010-04-07 22:13:06 +0800
commit51c215780ea8e9fe2ae8d4c6bbdbaf5a2977ebd6 (patch)
tree7a1f910c3ca36fe82c1937d82ce2efa71848f39e /misc/py-progressbar/pkg-descr
parent5f67967338a7301e2d3e0e27d4f513d7e9487bd7 (diff)
downloadfreebsd-ports-graphics-51c215780ea8e9fe2ae8d4c6bbdbaf5a2977ebd6.tar.gz
freebsd-ports-graphics-51c215780ea8e9fe2ae8d4c6bbdbaf5a2977ebd6.tar.zst
freebsd-ports-graphics-51c215780ea8e9fe2ae8d4c6bbdbaf5a2977ebd6.zip
New port py-progressbar version 2.2: A text progressbar library for python
Diffstat (limited to 'misc/py-progressbar/pkg-descr')
-rw-r--r--misc/py-progressbar/pkg-descr19
1 files changed, 19 insertions, 0 deletions
diff --git a/misc/py-progressbar/pkg-descr b/misc/py-progressbar/pkg-descr
new file mode 100644
index 00000000000..c9c13f58601
--- /dev/null
+++ b/misc/py-progressbar/pkg-descr
@@ -0,0 +1,19 @@
+This library provides a text mode progressbar. This is tipically
+used to display the progress of a long running operation, providing
+a visual clue that processing is underway.
+
+The ProgressBar class manages the progress, and the format of the
+line is given by a number of widgets. A widget is an object that
+may display diferently depending on the state of the progress.
+
+There are three types of widget:
+
+- a string, which always shows itself;
+
+- a ProgressBarWidget, which may return a diferent value every time
+it's update method is called; and
+
+- a ProgressBarWidgetHFill, which is like ProgressBarWidget, except
+it expands to fill the remaining width of the line.
+
+WWW: http://pypi.python.org/pypi/progressbar/