mirror of
https://github.com/Textualize/rich.git
synced 2025-08-04 10:08:40 +00:00
10 lines
236 B
Python
10 lines
236 B
Python
from rich import print
|
|
from rich.console import render_group
|
|
from rich.panel import Panel
|
|
|
|
@render_group()
|
|
def get_panels():
|
|
yield Panel("Hello", style="on blue")
|
|
yield Panel("World", style="on red")
|
|
|
|
print(Panel(get_panels()))
|