Skip to content

Mrhs121/RainbowPrint

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

RainbowPrint

PyPI

Install via pip:

pip install RainbowPrint

Update

remove rich_mode in print_table

Tutorial on how to use the RainbowPrint API

All supported colors are below:

1. red
2. black
3. green
4. yellow
5. blue
6. magenta
7. cyan
8. white

Pure color pattern

from RainbowPrint import RainbowPrint as rp
print(rp.red('Hello World'))
print(rp.red('Hello World'),rp.green('Hello Rainbow Print'))

You can also pass in multiple strings

from RainbowPrint import RainbowPrint as rp
print(rp.red('Hello World','Hello RainbowPrint'))

pure

Background color + Text clolor pattern

There are three default color schemes:

from RainbowPrint import RainbowPrint as rp
rp.info("Hello World")
rp.debug("Hello World")
rp.error("hello World")

You can also customize color schemes using the rainbow_print method

from RainbowPrint import RainbowPrint as rp
rp.rainbow_print("RainbowPrint",text_color=rp.TextColor.GREEN,background=rp.BackgroundColor.BLUE)

back

The rainbow_print method takes 4 arguments:

  1. data,
  2. display_mode, default value is DisplayMode.TERMINAL_DEFAULT_SETTINGS
  3. text_color, default value is TextColor.WHITE
  4. background, default value is BackgroundColor.RED

Customize

...

Table

Beautify table print is supported starting with version 2.0 ^_^

    from RainbowPrint import RainbowPrint as rp
    table = []
    title = ['name','email','phone','address']
    row1 = ['huang','hs123@gmail.com',111,'jiangxi yichun']
    row2 = ['jinxin','jinxin666@163.com','110119112','jiangsu jiangyin']
    row3 = ['jinxin','jinxin666@163.com','110119112','jiangsu jiangyin']
    row4 = ['jinxin','jinxin666@163.com','110119112','jiangsu jiangyin']
    table.append(title)
    table.append(row1)
    table.append(row2)
    table.append(row3)
    table.append(row4)
    rp.print_table(table, title, theme=rp.Table_Theme.BLUE_YELLOW,hilight=[2])
    rp.print_table(table,title,border_style=rp.BorderStyle.SINGLE_LINE,hilight=[2])
    rp.print_table(table, title, border_style=rp.BorderStyle.ROUND,hilight=[2])

The print_table method takes 5 arguments:

  1. table, Two-dimensional table
  2. title, Table tile
  3. theme, Default value is Table_Theme.GREEN,
  4. border_style, Default value is BorderStyle.DEFAULT.value. There are three options: ROUND,SINGLE_LINE,DEFAULT
  5. hilight, Default value is []. Specifies the columns that need to be highlighted, such as hilight=[2]
  6. alignment, Default value is rp.Alignment.LEFT,There are three options: rp.Alignment.MID,rp.Alignment.LEFT,rp.Alignment.RIGTH

table

About

python 彩色打印表格

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages