Metadata-Version: 2.1
Name: print_wcolor
Version: 0.0.3
Summary: print_wcolor
Home-page: https://github.com/wanggaoping/print_wcolor.git
Author: wgp
Author-email: 819032030@qq.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

# print_wcolor
使用print_wcolor可以打印出彩色字体和彩色背景

Use Print WColor to print out colored fonts and colored backgrounds
使用示例

for example

```
import print_wcolor

if __name__=="__main__":
    print_wcolor("i think,therefor i am",fg="red",bg="green")
```


其中"i think,therefor i am"是要打印的信息，fg是字体颜色，bg是背景颜色。

Where "I think,therefor I am" is the information to be printed, fg is the font color, bg is the background color.

关键词fg选项如下

Keyword FG options are as follows

```
{"black","red","green","yellow","blue","purple","cyan","white"}
```


关键词bg选项如下

Keyword BG options are as follows

```
{"black","red","green","yellow","blue","purple","cyan","white"}
```



