mirror of
https://github.com/mbusb/multibootusb
synced 2024-11-01 15:40:16 +00:00
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 *
|