A progress bar for Python 2 and Python 3 – pip install progressbar2
Travis status:
Coverage:
Install
The package can be installed through pip (this is the recommended method):
pip install progressbar2
Or if pip is not available, easy_install should work as well:
easy_install progressbar2
Or download the latest release from Pypi (https://pypi.python.org/pypi/progressbar2) or Github.
Note that the releases on Pypi are signed with my GPG key (https://pgp.mit.edu/pks/lookup?op=vindex&search=0xE81444E9CE1F695D) and can be checked using GPG:
gpg –verify progressbar2-
.tar.gz.asc progressbar2- .tar.gz
Introduction
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