freebsd-ports/misc/py-progressbar/pkg-descr
Sunpoet Po-Chuan Hsieh 0b55432514 - Update to 2.3
- Update LICENSE
- Remove leading indefinite article from COMMENT
- Reformat pkg-descr and fix typo
- Take maintainership

Changes:	https://code.google.com/p/python-progressbar/source/browse/ChangeLog.yaml
2014-02-24 10:38:50 +00:00

16 lines
720 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: http://code.google.com/p/python-progressbar