Metadata-Version: 1.1
Name: kolors
Version: 0.0.2
Summary: Simple and lightweight shell color output function.
Home-page: https://github.com/h3/python-kolors
Author: Maxime Haineault
Author-email: haineault@gmail.com
License: MIT
Description: # python-kolors
        
        Simple and lightweight shell color output function.
        
        
        It also checks if terminal supports color before vomitting ANSI codes.
        
        
        ## Usage
        
        ```python
        from kolors import c
        
        print c('Some <red>Red</end> and <blue>blue</end> text')
        print c('<green bg>Some green background</end>')
        print c('Some <cyan bold bg>{}</end>').format('interpolation')
        ```
        
        **Note**: the keyword in the closing tag isn't really relevant, but I like to
        use "</end>" everywhere for shortness and consistency.  Simple shell color
        output function.
        
        
        ## Colors
        
        * grey (alias: gray)
        * red
        * green
        * yellow
        * blue
        * magenta (alias: purple)
        * cyan
        * white
        
        
        # Styles
        
        * bold
        * bg
        
        
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
