mirror of
https://github.com/aiogram/aiogram.git
synced 2026-04-08 16:37:47 +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)
|