Metadata-Version: 1.0
Name: pycolors2
Version: v0.0.1
Summary:  Tool to color code python output 
Home-page: http://www.github.com/ff0000/colors/
Author: RED Interactive Agency
Author-email: geeks@ff0000.com
License: MIT license
Description: =========
        PyColors2
        =========
        
        This is a set of color methods and a dictionary that help you wrap 
        text output in colors.  This tool was originally forked from the
        Fabric fabric.colors library and upgraded with utilities from the
        original pycolors tool in pypi.
        
        Methods
        =======
        
        Using the methods is easy.  To make red text::
            
            from colors import *
            print(red('This will be red text'))
        
        To mix text simply::
        
            from colors import *
            print(red('This will be red text') + green('and this will be green text.'))
        
        Dictionary
        ==========
        
        Similarly the dictionary can be used::
        
            from colors import *
            print('%(red)sThis will be red text %(green)sand this will be green text.%(normal)s' % COLORS)
        
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: System
Classifier: Topic :: Terminals
Classifier: Topic :: Utilities
