mirror of
https://github.com/Textualize/rich.git
synced 2025-08-04 01:58:24 +00:00
12 lines
255 B
Python
12 lines
255 B
Python
from rich.console import Console
|
|
from rich.pretty import Pretty
|
|
|
|
DATA = {
|
|
"foo": [1, 2, 3, (1, 2, 3), {4, 5, 6, (7, 8, 9)}, "Hello, World"],
|
|
"bar": [None, False, True],
|
|
}
|
|
|
|
console = Console()
|
|
for w in range(100):
|
|
console.print(DATA, width=w)
|
|
|