HOME


Mini Shell 1.0
DIR: /proc/thread-self/root/usr/share/doc/python3-rich/examples/
Upload File :
Current File : //proc/thread-self/root/usr/share/doc/python3-rich/examples/overflow.py
from typing import List
from rich.console import Console, OverflowMethod

console = Console(width=14)
supercali = "supercalifragilisticexpialidocious"

overflow_methods: List[OverflowMethod] = ["fold", "crop", "ellipsis"]
for overflow in overflow_methods:
    console.rule(overflow)
    console.print(supercali, overflow=overflow, style="bold blue")
    console.print()