1'''Text progress bar library for Python.
2
3A text progress bar is typically used to display the progress of a long
4running operation, providing a visual cue that processing is underway.
5
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.
9
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'''
13
14__title__ = 'Python Progressbar'
15__package_name__ = 'progressbar2'
16__author__ = 'Rick van Hattem (Wolph)'
17__description__ = ' '.join('''
18A Python Progressbar library to provide visual (yet text based) progress to
19long running operations.
20'''.strip().split())
21__email__ = 'wolph@wol.ph'
22__version__ = '3.55.0'
23__license__ = 'BSD'
24__copyright__ = 'Copyright 2015 Rick van Hattem (Wolph)'
25__url__ = 'https://github.com/WoLpH/python-progressbar'