Coverage for /Volumes/workspace/python-progressbar/.tox/py39/lib/python3.9/site-packages/progressbar/__about__.py: 100%
9 statements
« prev ^ index » next coverage.py v6.5.0, created at 2022-11-01 13:44 +0100
« prev ^ index » next coverage.py v6.5.0, created at 2022-11-01 13:44 +0100
1'''Text progress bar library for Python.
3A text progress bar is typically used to display the progress of a long
4running operation, providing a visual cue that processing is underway.
6The ProgressBar class manages the current progress, and the format of the line
7is given by a number of widgets. A widget is an object that may display
8differently depending on the state of the progress bar.
10The progressbar module is very easy to use, yet very powerful. It will also
11automatically enable features like auto-resizing when the system supports it.
12'''
14__title__ = 'Python Progressbar'
15__package_name__ = 'progressbar2'
16__author__ = 'Rick van Hattem (Wolph)'
17__description__ = ' '.join(
18 '''
19A Python Progressbar library to provide visual (yet text based) progress to
20long running operations.
21'''.strip().split()
22)
23__email__ = 'wolph@wol.ph'
24__version__ = '4.2.0'
25__license__ = 'BSD'
26__copyright__ = 'Copyright 2015 Rick van Hattem (Wolph)'
27__url__ = 'https://github.com/WoLpH/python-progressbar'