rich/examples/group2.py

13 lines
238 B
Python
Raw Normal View History

2020-09-12 13:31:04 +00:00
from rich import print
from rich.console import render_group
from rich.panel import Panel
2020-09-13 12:12:34 +00:00
2020-09-12 13:31:04 +00:00
@render_group()
def get_panels():
yield Panel("Hello", style="on blue")
yield Panel("World", style="on red")
2020-09-13 12:12:34 +00:00
2020-09-12 13:31:04 +00:00
print(Panel(get_panels()))