Metadata-Version: 1.0
Name: pycolors2
Version: 0.0.2
Summary:  Tool to color code python output 
Home-page: http://github.com/chrisgilmerproj/pycolors2
Author: Chris Gilmer
Author-email: chris.gilmer@gmail.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.
        
        Maintainer: Chris Gilmer
        
        ## 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
