Metadata-Version: 1.1
Name: hl.colours
Version: 0.1.3
Summary: A simple way to add colours to terminal output in Python.
Home-page: http://github.com/hllau/hl.colours
Author: Hing-Lung Lau
Author-email: lung220@gmail.com
License: Apache v2
Description: hl.colours - colors for terminal output
        =======================================
        
        **hl.colours** add colours to terminal output.
        
        
        Installation
        ------------
        
        **Automatic installation**::
        
            pip install hl.colours
        
        HtmlNode is listed in `PyPI <http://pypi.python.org/pypi/hl.colours>`_ and
        can be installed with ``pip`` or ``easy_install``.
        
        **Manual installation**: Download the latest source from `PyPI
        <http://pypi.python.org/pypi/hl.colours>`_.
        
        .. parsed-literal::
        
            tar xvzf hl.colours-$VERSION.tar.gz
            cd hl.colours-$VERSION
            sudo python setup.py install
        
        The `hl.colours` source code is `hosted on GitHub
        <https://github.com/hllau/hl.colours>`_.
        
        
        
        Usage Example
        -------------
        
        Usage::
        
            import hl.colours as k
        
            for color in ['red', 'yellow', 'bblue', 'byellow']:
                print getattr(k, color)(color)
        
            print k.yellow('This is yellow.')
            print k.bred('This is stronger red.')
        
        
Keywords: color colour terminal command line output
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: License :: OSI Approved :: Apache Software License
