mirror of
https://github.com/Textualize/rich.git
synced 2025-07-07 12:54:59 +00:00
12 lines
224 B
Python
12 lines
224 B
Python
from rich import print
|
|
from rich.console import group
|
|
from rich.panel import Panel
|
|
|
|
|
|
@group()
|
|
def get_panels():
|
|
yield Panel("Hello", style="on blue")
|
|
yield Panel("World", style="on red")
|
|
|
|
|
|
print(Panel(get_panels()))
|