mirror of
https://github.com/anatolykopyl/youtube-cdl.git
synced 2026-03-26 04:45:11 +00:00
13 lines
421 B
Python
13 lines
421 B
Python
from rich.console import Console
|
|
c = Console()
|
|
|
|
|
|
def print_logo():
|
|
c.print("""\
|
|
__ ______ __ __________ ______ ______ __________ __
|
|
\ \/ / __ \/ / / /_ __/ / / / __ )/ ____/ / ____/ __ \/ /
|
|
\ / / / / / / / / / / / / / __ / __/______/ / / / / / /
|
|
/ / /_/ / /_/ / / / / /_/ / /_/ / /__/_____/ /___/ /_/ / /___
|
|
/_/\____/\____/ /_/ \____/_____/_____/ \____/_____/_____/
|
|
""", style='magenta')
|