mirror of
https://github.com/aiogram/aiogram.git
synced 2025-12-12 10:11:52 +00:00
12 lines
220 B
Python
12 lines
220 B
Python
try:
|
|
import emoji
|
|
except ImportError:
|
|
raise ImportError('Need install "emoji" module.')
|
|
|
|
|
|
def emojize(text):
|
|
return emoji.emojize(text, use_aliases=True)
|
|
|
|
|
|
def demojize(text):
|
|
return emoji.demojize(text)
|