Metadata-Version: 2.1
Name: color-text
Version: 1.1.0
Summary: A library for printing colored text
Home-page: UNKNOWN
Author: None
License: MIT
Description: # color_text
        
        This is a library for printing colored texts.这是一个用来打印彩色文字的库。
        
        ## install
        
        ```bash
        pip install color_text
        ```
        
        ## example
        
        ```python
        from color_text import *
        
        
        printLightRed("This is a light red text.")
        printYellow("This is a yellow text.")
        printRed("This is a red text.")
        printGreen("This is a green text.")
        printBlack("This is a black text.")
        printBlue("This is a blue text.")
        printPurple("This is a purple text.")
        printWhite("This is a white text.")
        printGrey("This is a grey text.")
        printGray("This is a grey text too.")
        printLightBlue("This is a light blue text.")
        printVeryLightGreen("This is a very light green text.")
        printLightPurple("This is a light purple text.")
        printLightYellow("This is a light yellow text.")
        printGlossWhite("This is a gloss white text.")
        printLightGreen("This is a light green text.")
        printLightGreen("This is a light green text too.", 2)
        Print("This is a text.")
        # You can see the result of this example in the exaple() function of this library.
        # 你可以在这个库的 exaple() 函数中看到这个例子的结果。
        ```
        
        
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.8
Classifier: Operating System :: Microsoft :: Windows :: Windows 10
Classifier: License :: OSI Approved :: MIT License
Requires-Python: ==3.8.*
Description-Content-Type: text/markdown
