Metadata-Version: 1.1
Name: tmcolors
Version: 0.1.1
Summary: ANSI colors for Python
Home-page: https://github.com/mysz/tmcolors
Author: Giorgos Verigakis, Marcin Sztolcman
Author-email: marcin@urzenia.net
License: ISC
Description: ANSI colors for Python
        ======================
        
        A simple module to add ANSI colors and decorations to your strings.
        
        Example Usage
        -------------
        
        You can choose one of the 8 basic ANSI colors: black, red, green, yellow, blue,
        magenta, cyan, white.
        
        ::
        
            from tmcolors import red, green, blue
            print red('This is red')
            print green('This is green')
            print blue('This is blue')
        
        Optionally you can specify a background color.
        
        ::
        
            print red('red on blue', bg='blue')
            print green('green on black', bg='black')
        
        You can additionally specify one of the supported styles: bold, faint, italic,
        underline, blink, blink2, negative, concealed, crossed. Not all styles are
        supported by all terminals.
        
        ::
        
            from tmcolors import bold, underline
            print bold('This is bold')
            print underline('underline red on blue', fg='red', bg='blue')
            print green('bold green on black', bg='black', style='bold')
        
        You can also use more than one styles at once.
        
        ::
        
            print red('This is very important', style='bold+underline')
        
        xterm-256 colors are supported as well, to use them give an integer instead of
        a color name.
        
        ::
        
            from tmcolors import colorize
            for i in range(256):
                print colorize('Color #%d' % i, fg=i)
        
        
        License
        -------
        
        tmcolors is licensed under the ISC license.
        
Platform: UNKNOWN
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: ISC License (ISCL)
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
