Metadata-Version: 2.1
Name: gprint
Version: 0.0.3
Summary: A fast way to print in color.
Home-page: https://github.com/guillerpsanchez/gprint
Author: Guillermo Peñarando Sánchez
Author-email: guillermo@guillerpsanchez.dev
License: MIT
Description: # gprint
        
        [![Mantainer](https://img.shields.io/badge/maintainer-guillerpsanchez-blue)](https://github.com/guillerpsanchez)
        [![Maintenance](https://img.shields.io/badge/Maintained%3F-yes-green.svg)](https://github.com/guillerpsanchez/gprint)
        [![Python-version](https://img.shields.io/badge/Python-3.6%20%7C%203.7%20%7C%203.8%20%7C%203.9-informational)](https://github.com/guillerpsanchez/gprint)
        [![PyPI](https://img.shields.io/pypi/v/gprint)](https://pypi.org/project/gprint)
        
        gprint is a Python module that allows to print color on almost any terminal.
        
        
        ## How to import
        
        ```python
        from gprint import *
        ```
        
        ## Usage
        
        ```python
        gprint(message, rgb, new_line, rainbow_mode)
        ```
        message         = String with the text to be printed.
        rgb             = A list of 3 Integers from 0 to 255 that represents every color on rgb scale, a color code (RED, BLUE....) can be used too. Defaults to "default" (white text).
        new_line        = A boolean that represents if you want a new line after the printed text or not. Defaults to True.
        rainbow_mode    = A boolean that allows the command to print every character from a pseudo-randomized color. Defaults to False.
        return_me       = A boolean that allows to return of the colorized text instead of printing it directly (useful for other commands like input() ). Defaults to False.
        
        ## Errors and contact
        
        > guillermo@guillerpsanchez.dev
        
        Feel free to contact me at any time.
        
        ## Changelog
        
        > 0.0.1
            - Initial release
        
        > 0.0.2
            - Added rainbow_mode
            - Added new_line
        
        > 0.0.3
            - Fixed problem with randomized colors.
            - Added return_me
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.6
Requires-Python: >=3.6
Description-Content-Type: text/markdown
