Metadata-Version: 1.1
Name: PyPrind
Version: 1.1.0
Summary: Python Progress Indicator Utility
Home-page: https://github.com/rasbt/pyprind
Author: Sebastian Raschka
Author-email: se.raschka@gmail.com
License: GPLv3
Description: 
        PyPrind
        =============
        The PyPrind (Python Progress Indicator) module provides a progress bar and a 
        percentage indicator object that let you track the progress of a loop  
        structure or other iterative computation.  
        Typical applications include the processing of large data sets to provide 
        an intuitive estimate at runtime about the progress of the computation.
        
        
        
        Example - Progress Bar
        --------------------------
        
            import pyprind
        
            n = 10000000
            my_prbar = pyprind.ProgBar(n)
            for i in range(n):
                # do some computation
                my_prbar.update()
            my_prbar.finish() 
        
        **Screen Output**  
        
        sebastian > python3 examples/ex_progress_bar.py 
        0%                                    100%
        [########################################]
        Time elapsed: 0.7829 sec
        
Platform: any
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Development Status :: 5 - Production/Stable
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Environment :: Console
