Give a beautiful look of your text in the terminal.
link to access to the pypi page : https://pypi.org/project/aesthetic-text/0.2.0/
$ pip install aesthetic_textfrom aesthetic_text import aesthetic_text as aesthetic
# print a text with a style
# style: bold, italic, underline, strikethrough, reverse, conceal, crossed
print(f"{aesthetic.style.bold}{aesthetic.style.underline}" + "Hello World" + f"{aesthetic.reset}")
# print a text with a color
# colors: black, red, green, yellow, blue, magenta, cyan, white...
print(f"{aesthetic.color.red}" + "Hello World" + f"{aesthetic.reset}")
# print a text with style and color
print(f"{aesthetic.style.bold}{aesthetic.color.red}" + "Hello World" + f"{aesthetic.reset}
# print a text with icon
print(f"{aesthetic.icon.check}" + "the task has been completed successfully" + f"{aesthetic.reset}")