mirror of
https://github.com/koloideal/Argenta.git
synced 2026-06-10 18:15:28 +03:00
9 lines
325 B
Python
9 lines
325 B
Python
from rich.console import Console
|
|
from rich.markup import escape
|
|
|
|
|
|
console = Console()
|
|
text = lambda command, description: f'[bold red]{escape('['+command+']')}[/bold red] [blue dim]*=*=*[/blue dim] [bold yellow italic]{escape(description)}'
|
|
print(text('start', 'command start'))
|
|
console.print(text('start', 'command start'))
|