-
Notifications
You must be signed in to change notification settings - Fork 1
/
emojis.py
43 lines (42 loc) · 1.5 KB
/
emojis.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
32
33
34
35
36
37
38
39
40
41
42
43
emoji_docs = {
'happy, joy, relaxed, content': ['😀', '🥰'],
'funny, joke': ['😆', '🤣'],
'love': ['😍'],
'world, travel, international': ['🌎'],
'party, gathering, fun': ['🎉'],
'hungry, yummy, delicious': ['😋'],
'cool, hip': ['😎'],
'sad, worried': ['😟'],
'surprised, mind-blowing': ['🤯'],
'sleepy, sleeping, tired': ['😴'],
'smart, intelligence, knowledge': '🧠',
'dork, nerdy': ['🤓'],
'weird, alien, strange': ['👾'],
'toilet, poop': ['🚽', '💩'],
'impressive, amazing, congratulations': ['👏🏻'],
'okay, understood, got it': ['👌'],
'running, exercise': ['🏃♀️', '🏋️'],
'dog, dogs': ['🐶'],
'fish': ['🐠'],
'ocean, sea, river, lake': ['🌊'],
'bicycle, biking': ['🚴'],
'nature, trees': ['🌴'],
'desert': ['🌵'],
'mountains': ['⛰️'],
'sunrise, sunset': ['🌄','🌅'],
'moon': ['🌙'],
'rain': ['🌧️', '🌈'],
'food, groceries': ['🍔', '🥘', '🍕'],
'beer, wine, alcohol, drinking': ['🍺', '🍷', '🍾'],
'pingpong': ['🏓'],
'launch, rocket, beginning': ['🚀'],
'car, driving': ['🚙'],
'art': ['🎨'],
'music': ['🎹', '🎸', '🎧'],
'flight, airplane, travel': ['✈️'],
'work, tools, building': ['🔨', '🛠️'],
'new york': ['🗽'],
'science': ['🔭🔬'],
'shower': ['🚿'],
'technology, AI, computers': ['💻', '🤖']
}