cheesy/moku/filters.py

7 lines
156 B
Python
Raw Normal View History

2024-03-25 14:11:21 +00:00
from emoji import demojize
def unemoji(txt: str):
"""Turn emoji in the given string into plain text."""
2024-03-25 14:11:21 +00:00
return demojize(txt, delimiters=("", ""))