-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEmojiGenerator.py
31 lines (27 loc) · 1.01 KB
/
EmojiGenerator.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
from emoji import emojize
def em(em_code):
return emojize(em_code, use_aliases=True)
def get_em():
return {'cloud': em(':cloud:'),
'moon': em(':new_moon:'),
'sunrise': em(':sunrise:'),
'sunset': em(':'),
'cloud_rain': em(':cloud_with_rain:'),
'calendar': em(':spiral_calendar_pad:'),
'clock': em(':alarm_clock:'),
'megaphone': em(':loudspeaker:'),
'org': em(':speech_balloon:'),
'link': em(':link:'),
'weath': em(':white_sun_behind_cloud_with_rain:'),
'oven': em(':aries:'),
'telec': em(':taurus:'),
'blizneci': em(':gemini:'),
'rak': em(':cancer:'),
'lev': em(':leo:'),
'deva': em(':virgo:'),
'vesi': em(':libra:'),
'scorpion': em(':scorpius:'),
'strelec': em(':sagittarius:'),
'kozerog': em(':capricorn:'),
'vodoley': em(':aquarius:'),
'ribi': em(':pisces:')}