rich/examples/group.py

10 lines
206 B
Python
Raw Permalink Normal View History

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