Metadata-Version: 2.1
Name: clrprint
Version: 1.0.2
Summary: Print color output in IDLE, powershell, and terminal.
Home-page: https://github.com/AbhijithAJ/clrprint
Author: ABHIJITH BOPPE
Author-email: abhijithas.eh@gmail.com
License: MIT
Download-URL: https://github.com/AbhijithAJ/clrprint/archive/refs/tags/v1.0.2.tar.gz
Description: <h1 align="center">
          clrprint v1.0
        <div align="center">
        
        [![Generic badge](https://img.shields.io/badge/Made_By-ABHIJITH_BOPPE-BLUE.svg)](https://www.linkedin.com/in/abhijith-boppe/)  
        [![made-with-python](https://img.shields.io/badge/Made%20with-Python-1f425f.svg)](https://www.python.org/) [![Generic badge](https://img.shields.io/badge/pypi_package-1.0-DARKGREEN.svg)](https://pypi.org/project/clrprint/) [![PyPI license](https://img.shields.io/pypi/l/ansicolortags.svg)](https://github.com/AbhijithAJ/clrprint/blob/master/LICENSE) [![PayPal](https://img.shields.io/badge/donate-PayPal-blue.svg)](https://www.paypal.me/abhijithboppes) 
        </div>
        
        
        </h1>
         
         - Colorful output 
         - Work's on IDLE, windows powerShell, Linux terminal
         - Simply input() and print() with clrinput() and clrprint()
         - Basic colors only. Red, green, yellow, blue, purple, and black/white (default)
         - Flexible to print or take input only on demand (on DEBUG)
        
        ---
        ## ABOUT
        
        This clrprint is developed to print a colorful output. It has red, blue, green, yellow, purple and black/white (default) colors. It works on idle, windows power shell and terminal.
        
        It prints with default color if given color is not in list of colors
        
        ### Installation
        You can install clrprint by running the following command
        ```
        pip install clrprint
        ```
        
        **Usage**
        
        It is as easy as you use print() and input() in the python.
        Just one more parameter (clr) is added to represent color.
        
        There are 2 functions clrprint(), clrinput(). Just pass your data to the functions with your desired color
        
        You can use clrhelp() to print out and see how to use it.
        
        Example:
        
            clrprint('text1','text2',clr='red') 
            clrinput('text1',clr='r')  # single letter is enough to represent color.
            clrprint('text1_clr1','text2_clr2','text3_clr3','text4_clr4',clr=['r','y','g']) # prints 3 colors in same line
            clrprint('ERROR:','error information','suggestions 1','suggestion2','suggestion3', clr=['r','y','g']) # print
        
        ## Screenshots
        Terminal:
        
        <img src="images/terminal.png" width="100%">
        
        IDLE:
        
        <img src="images/idle.png" width="100%">
        
        Powershell:
        
        <img src="images/powershell.png" width="100%">
        
        
        
        ### Example Code
        ```python
        '''
        Developed by Abhijith Boppe - linkedin.com/in/abhijith-boppe/
        '''
        from clrprint import *
        
        userclr = clrinput('Enter color: ',clr='green').strip()  # take a input color
        clrprint('You enterd',userclr,clr=userclr) # print it in that color
        
        # If color not available it print's with default color (white/black)
        
        clrhelp()  # to list out usage and available colors.
        ```
        
        <br>
        <a href="https://www.buymeacoffee.com/abhijithboppe" target="_blank"><img src="https://cdn.buymeacoffee.com/buttons/v2/default-orange.png" alt="Buy Me A Coffee" width="33%"></a>
        
        ---
        ## License & copyright
        Â© Abhijith Boppe, Security analyst
        
        <a href="https://linkedin.com/in/abhijith-boppe" target="_blank">LinkedIn</a>
        
        Â© Dheeraj Kakkar, Software Developer
        
        <a href="https://linkedin.com/in/dheerajkakkar" target="_blank">LinkedIn</a>
        
        
        Licensed under the [MIT License](LICENSE)
        
Keywords: basic colors,color print,cmd,color idle,color terminal,color powershell,color idle and terminal,color idle, cmd, powershell,DEBUG input,DEBUG
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Software Development :: Build Tools
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Requires-Python: >=3.2
Description-Content-Type: text/markdown
