ezprogress

Simple, easy to use progress bar.


Keywords
ez, ezprogress, progress-bar, progressbar, python3, python36
License
MIT
Install
pip install ezprogress==1.0.6

Documentation

ezprogress

Simple, easy to use progress bar for Python 3.6+.

Installation

$ pip3 install ezprogress

Usage

>>> from ezprogress.progressbar import ProgressBar
>>> pb = ProgressBar(total=100, title='Progress')
>>> pb.start()
>>> for i in range(0, 100):
>>>     pb.update(i)
>>>     do_stuff(i)
>>> pb.finished()