mirror of
https://github.com/gsi-upm/senpy
synced 2024-11-14 12:42:27 +00:00
8a516d927e
Check out the CHANGELOG.md file for more information
26 lines
733 B
Python
26 lines
733 B
Python
#!/usr/local/bin/python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
emoticons = {
|
|
'pos': [':)', ':]', '=)', ':D'],
|
|
'neg': [':(', ':[', '=(']
|
|
}
|
|
|
|
emojis = {
|
|
'pos': [u'😁', u'😂', u'😃', u'😄', u'😆', u'😅', u'😄', u'😍'],
|
|
'neg': [u'😢', u'😡', u'😠', u'😞', u'😖', u'😔', u'😓', u'😒']
|
|
}
|
|
|
|
|
|
def get_polarity(text, dictionaries=[emoticons, emojis]):
|
|
polarity = 'marl:Neutral'
|
|
print('Input for get_polarity', text)
|
|
for dictionary in dictionaries:
|
|
for label, values in dictionary.items():
|
|
for emoticon in values:
|
|
if emoticon and emoticon in text:
|
|
polarity = label
|
|
break
|
|
print('Polarity', polarity)
|
|
return polarity
|