Metadata-Version: 1.1
Name: bashcolor
Version: 0.9.0
Summary: A simple library to get colors in the bash terminal
Home-page: https://github.com/sbrunner/bashcolor/
Author: Stéphane Brunner
Author-email: stephane.brunner@gmail.com
License: UNKNOWN
Description: == Bash color
        
        === Available colors
        
        * BLACK
        * RED
        * GREEN
        * BROWN
        * BLUE
        * PURPLE
        * CYAN
        * LIGHT_GRAY
        * _OTHER
        * DEFAULT
        * DARK_GRAY
        * LIGHT_RED
        * LIGHT_GREEN
        * YELLOW
        * LIGHT_BLUE
        * LIGHT_PURPLE
        * LIGHT_CYAN
        * WHITE
        
        === Available effect
        
        * BOLD
        * DIM  # not working on Konsole
        * UNDERLINE
        * BLINK  # not working on Konsole and gnome Terminal
        * INVERSE
        * HIDDEN  # not working on Konsole
        
        === Example
        
        ```python
        from bash import colorize, RED, UNDERLINE
        
        print(colorize('Red color', RED))
        print(colorize('Red background', background=RED))
        print(colorize('Underline', effect=UNDERLINE))
        ```
        
        === API
        
         ``python
        def colorize(text, color=None, background=None, effects=[], color_256=None, background_256=None, with_end=True):
        ```
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
