mirror of
git://git.yoctoproject.org/poky.git
synced 2025-07-19 21:09:03 +02:00

Since we're going to make some minor extensions to it, it makes sense to bring in the latest version of python-progressbar. Its structure has changed a little but the API hasn't; however we do need to ensure our overridden _needs_update() function's signature in BBProgress() matches properly. (Bitbake rev: c3e51d71b36cbc9e9ed1b35fb93d0978e24bc98a) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
50 lines
1.9 KiB
Python
50 lines
1.9 KiB
Python
#!/usr/bin/python
|
|
# -*- coding: utf-8 -*-
|
|
#
|
|
# progressbar - Text progress bar library for Python.
|
|
# Copyright (c) 2005 Nilton Volpato
|
|
#
|
|
# This library is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU Lesser General Public
|
|
# License as published by the Free Software Foundation; either
|
|
# version 2.1 of the License, or (at your option) any later version.
|
|
#
|
|
# This library is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
# Lesser General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU Lesser General Public
|
|
# License along with this library; if not, write to the Free Software
|
|
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
"""Text progress bar library for Python.
|
|
|
|
A text progress bar is typically used to display the progress of a long
|
|
running operation, providing a visual cue that processing is underway.
|
|
|
|
The ProgressBar class manages the current progress, and the format of the line
|
|
is given by a number of widgets. A widget is an object that may display
|
|
differently depending on the state of the progress bar. There are three types
|
|
of widgets:
|
|
- a string, which always shows itself
|
|
|
|
- a ProgressBarWidget, which may return a different value every time its
|
|
update method is called
|
|
|
|
- a ProgressBarWidgetHFill, which is like ProgressBarWidget, except it
|
|
expands to fill the remaining width of the line.
|
|
|
|
The progressbar module is very easy to use, yet very powerful. It will also
|
|
automatically enable features like auto-resizing when the system supports it.
|
|
"""
|
|
|
|
__author__ = 'Nilton Volpato'
|
|
__author_email__ = 'first-name dot last-name @ gmail.com'
|
|
__date__ = '2011-05-14'
|
|
__version__ = '2.3'
|
|
|
|
from .compat import *
|
|
from .widgets import *
|
|
from .progressbar import *
|