2018-01-03 08:39:30 +00:00
|
|
|
#!/usr/local/bin/python
|
2019-01-07 11:08:19 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
2018-01-03 08:39:30 +00:00
|
|
|
|
|
|
|
emoticons = {
|
2018-01-06 17:51:16 +00:00
|
|
|
'pos': [':)', ':]', '=)', ':D'],
|
|
|
|
'neg': [':(', ':[', '=(']
|
2018-01-03 08:39:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
emojis = {
|
2019-01-07 11:08:19 +00:00
|
|
|
'pos': [u'😁', u'😂', u'😃', u'😄', u'😆', u'😅', u'😄', u'😍'],
|
|
|
|
'neg': [u'😢', u'😡', u'😠', u'😞', u'😖', u'😔', u'😓', u'😒']
|
2018-01-03 08:39:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
def get_polarity(text, dictionaries=[emoticons, emojis]):
|
|
|
|
polarity = 'marl:Neutral'
|
2019-01-07 11:08:19 +00:00
|
|
|
print('Input for get_polarity', text)
|
2018-01-03 08:39:30 +00:00
|
|
|
for dictionary in dictionaries:
|
|
|
|
for label, values in dictionary.items():
|
|
|
|
for emoticon in values:
|
|
|
|
if emoticon and emoticon in text:
|
|
|
|
polarity = label
|
|
|
|
break
|
2019-01-07 11:08:19 +00:00
|
|
|
print('Polarity', polarity)
|
2018-01-03 08:39:30 +00:00
|
|
|
return polarity
|