Metadata-Version: 2.1
Name: clpb
Version: 1.0.0
Summary: Command line progress bar for Python 3
Home-page: https://github.com/dmitriiweb/clpb
Author: Dmitrii K
Author-email: winston_smith_spb@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6

CLPB
====

Command Line Progress Bar for Python 3.x

Installation
------------

::

    pip install clpb

Examples
--------

::

    >>> from clpb import ProgressBar
    >>> items_length = 69
    >>> pb = ProgressBar(0, items_length)
    >>> pb.initial_print()
    ...     pb.current_print(i+1)
    Progress |████████████████████████████████████████| 100.0% Complete

::

    >>> from clpb import ProgressBar
    >>> items_length = 69
    >>> pb = ProgressBar(0, items_length, fill='#')
    >>> pb.initial_print()
    ...     pb.current_print(i+1)
    Progress |########################################| 100.0% Complete



