Calmcode - rich: emoji

How to print Emoji in Python using Rich.

1 2 3 4 5 6 7 8 9 10 11 12

Rich Python Emoji's

You can use rich to show emoji! They render natively when you render a string in a Console object.

from rich.console import Console

console = Console()
console.print(":thumbs_up: File downloaded!")