Metadata-Version: 2.1
Name: make-colors
Version: 3.33
Summary: Make command line text colored
Home-page: https://github.com/licface/make_colors
Author: Hadi Cahyadi LD
Author-email: cumulus13@gmail.com
Maintainer: cumulus13 Team
Maintainer-email: cumulus13@gmail.com
License: BSD
Project-URL: Documentation, https://github.com/licface/make_colors
Project-URL: Code, https://github.com/licface/make_colors
Project-URL: Issue tracker, https://github.com/licface/make_colors/issues
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Requires-Python: >=2.7
Description-Content-Type: text/markdown
License-File: LICENSE.rst

make_colors
==================

This is make command line text colored


Installing
-----------

Install and update using `pip`_:

.. code-block:: text

    $ pip install make_colors

make_colors supports Python 2 and newer, Python 3 and newer, and PyPy.

.. _pip: https://pip.pypa.io/en/stable/quickstart/


A Simple Example
-----------------

What does it look like? Here is an example of a simple make_colors program:

.. code-block:: python

    from make_colors import make_colors
    
    print make_colors('This is White on Red', 'white', 'red')
    print make_colors('This is Light White on Light Red', 'lightwhite', 'lightred')
    print make_colors('This is Light White on Light Magenta', 'lw', 'm')
    print make_colors('This is Light White on Light Blue', 'lw', 'bl')


And what it looks like when run:

.. code-block:: text

    $ python hello.py 
    This is White on Red
    This is Light White on Light Red
    This is Light White on Light Magenta
    This is Light White on Light Blue


Support
--------

*   Python 2.7 +, Python 3.x
*   Windows, Linux

Links
------

*   License: `BSD <https://github.com/licface/make_colors/blob/master/LICENSE.rst>`_
*   Code: https://github.com/licface/make_colors
*   Issue tracker: https://github.com/licface/make_color/issues
