ports/misc/py-progressbar/pkg-descr
Sunpoet Po-Chuan Hsieh 85ee7dbbf5 - Update LICENSE
- Add LICENSE_FILE
- Add NO_ARCH
- Allow build with Python 3 and relax USES=python
- Allow concurrent installation (USE_PYTHON=concurrent)
- Update WWW
- Add GitHub repository to WWW
2016-11-24 15:34:24 +00:00

17 lines
774 B
Text

This library provides a text mode progressbar. This is typically
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: https://pypi.python.org/pypi/progressbar
WWW: https://github.com/niltonvolpato/python-progressbar