SIGN IN SIGN UP
Textualize / rich UNCLAIMED

Rich is a Python library for rich text and beautiful formatting in the terminal.

0 0 0 Python
2020-09-12 14:31:04 +01:00
from rich import print
2021-07-28 09:10:23 +01:00
from rich.console import Group
2020-09-12 14:31:04 +01:00
from rich.panel import Panel
2021-07-28 09:10:23 +01:00
panel_group = Group(
2020-09-12 14:31:04 +01:00
Panel("Hello", style="on blue"),
Panel("World", style="on red"),
)
print(Panel(panel_group))