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