Metadata-Version: 1.1
Name: ipy-progressbar
Version: 1.0.2
Summary: Progressbar for both IPython Notebooks (HTML, CSS, JS) and plain terminals.
Home-page: https://hg.plav.in/my_projects/ipy-progressbar
Author: Alexander Plavin
Author-email: alexander@plav.in
License: MIT
Description: ipy-progressbar allows to use the same code for rich progressbars in
        IPython Notebooks, and for simple fallback ones in terminal sessions.
        
        Example
        =======
        
        Code like this:
        
        ::
        
            from ipy_progressbar import ProgressBar
        
            pb = ProgressBar(10, title='Outer', key='outer')
            for i in pb:
                pb_inner = ProgressBar(5, title='Inner', key='inner')
                for j in pb_inner:
                    # inner loop body
        
        will work both in IPython Notebook and in plain console. When run in
        notebook, the output will be rich (Bootstrap progress bars), while
        console version is mainly thought of as a fallback.
        
Keywords: progress progressbar terminal console ipython notebook
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Environment :: Web Environment
Classifier: Framework :: IPython
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Software Development :: User Interfaces
Classifier: Topic :: Terminals
