Metadata-Version: 1.1
Name: ribbon
Version: 1.0.0
Summary: A simple color console print library.
Home-page: https://github.com/hanks/ribbon
Author: hanks
Author-email: zhouhan315@gmail.com
License: MIT
Description: ribbon[![Coverage Status](https://coveralls.io/repos/hanks/ribbon/badge.png?branch=master)](https://coveralls.io/r/hanks/ribbon?branch=master)  [![Build Status](https://travis-ci.org/hanks/ribbon.svg?branch=master)](https://travis-ci.org/hanks/ribbon)
        ===========================
        
        A simple color print library for console.
        
        ## Version History
        
        ###_VERSION_ 1.0 - 2014/07/30
        + First release upon the world  
        
        ## Why
        Just inspired by **fabric.colors** module, and want to try how to release a python package to PyPi, so create this simple library.  
        
        The ribbon library can help you to print colorful text in console more easily, and even you can print **rainbow-like** text. Just for fun!!
        
        ## Demo
        ![demo](https://raw2.github.com/hanks/ribbon/master/demo/demo.png)
        
        ##Usage
        ```
        from ribbon import red
        print(red('This text is red'))
        
        from ribbon import red, green
        print(red('This is red and ' + green('that is green')))
        
        from ribbon import rainbow
        print(rainbow('This is a rainbow-like text!'))
        ```
        
        ## Install
        ```
        pip install ribbon
        ```
        
        ## Contribution
        **Waiting for your pull request**
        
        ## Lisence
        MIT Lisence
Keywords: color console print
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Environment :: Console
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
