rich/examples/group2.py

13 lines
224 B
Python
Raw 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
2020-09-13 12:12:34 +00:00
2021-07-28 08:10:23 +00:00
@group()
2020-09-12 13:31:04 +00:00
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()))