6 lines
156 B
Python
Executable file
6 lines
156 B
Python
Executable file
from emoji import demojize
|
|
|
|
|
|
def unemoji(txt: str):
|
|
"""Turn emoji in the given string into plain text."""
|
|
return demojize(txt, delimiters=("", ""))
|