Metadata-Version: 1.2
Name: ezprogress
Version: 1.0.3
Summary: Simple, easy to use progress bar.
Home-page: https://github.com/Joklost/ezprogress
Author: Jonas Kloster Jacobsen
Author-email: joklost@gmail.com
License: MIT
Description-Content-Type: UNKNOWN
Description: Simple, easy to use progress bar for Python.
        
        .. code:: python
        
            >>> 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()
        
Platform: UNKNOWN
Requires-Python: >=3.6
