-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathemoticons.py
63 lines (55 loc) · 1.52 KB
/
emoticons.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# https://github.com/NeelShah18/emot/blob/master/emot/emo_unicode.py
# https://slangit.com/emoticons/common
EMOTICONS = {':)': 'smile',
':-)': 'smile',
':^)': 'smile',
':-D': 'smile',
":'-)": 'sadsmile',
';d': 'wink',
';)': 'wink',
';-)': 'wink',
':(': 'sad',
':-(': 'sad',
':-<': 'sad',
':P': 'raspberry',
':O': 'surprised',
':-@': 'shocked',
':@': 'shocked',
':-$': 'confused',
':-!': 'confused',
':-&': 'confused',
'O.o': 'confused',
':\\': 'annoyed',
':#': 'mute',
':X': 'mute',
'$_$': 'greedy',
'@@': 'eyeroll',
':-0': 'yell',
'<(-_-)>': 'robot',
'd[-_-]b': 'dj',
'O:-)': 'angel',
'O*-)': 'angel',
'(:-D': 'gossip',
'=^.^=': 'cat',
':-E': 'vampire',
# 'XD':
# '=D':
# ':|':
# ':-|':
# '~,~':
# '<3':
# ':-B':
# '<|:0':
# ':-/':
# ':/':
# '8-)':
# '>:)':
# ':*)':
# ':-#':
# '#-o':
# 'B-)':
# ":')":
# '*-*':
# '<><':
# '</3':
}