Skip to main content

在终端中输出彩色文本

Project description

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 ^_^

    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.value,hilight=[2])
    rp.print_table(table, title, border_style=rp.BorderStyle.ROUND.value,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]

table

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

RainbowPrint-2.0.5.tar.gz (4.6 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page