Metadata-Version: 2.1
Name: consolebar
Version: 1.2
Summary: Stunning progress bars for consoles for showing progress of python loops!
Home-page: https://github.com/AbhayTr/ConsoleBar
Author: Abhay Tripathi
Author-email: abhay.triipathi@gmail.com
License: MIT
Download-URL: https://github.com/AbhayTr/ConsoleBar/archive/v1.2.tar.gz
Description: # ConsoleBar
        
        Python Module which creates stunning progress bars for showing progress of loops and iterables in python.
        
        ## Installation
        
        Simply using PyPi: 
        
        ```
        pip install consolebar
        ```
        ## Usage
        
        Simply run the following python code:
        
        ```python
        from consolebar import ConsoleBar
        
        for item in ConsoleBar(object'''(list(), tuple(), dict(), range(), iterable, etc.)''', optional_params):
            #Do your stuff
        ```
        
        Thats it!
        
        ## Parameters
        
        - **loop_to_execute (Required):** Python loop parameter (list(), dictionary(), tuple(), str(), range(), etc.) i.e. iterable object for which progress bar is shown.
        - **prefix (Optional):** A string which is shown before the progress bar to describe the progress bar (Default: "Progress:").
        - **suffix (Optional):** A string which is shown after the progress bar to describe the progress percentage shown after the progress bar (Default: "Complete").
        - **length (Optional):** Length of the progress bar in charecters. Can be adjusted according to one's console charecter width (Default: 50).
        
        Highly useful when you want to run huge loops but don't want to just see the blinking cursor of the console while it is executing.
        
Keywords: Console,Progress Bar,Python Progress Bar,Console Progress Bar
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Description-Content-Type: text/markdown
