mirror of
https://github.com/gsi-upm/senpy
synced 2024-10-31 23:41:41 +00:00
3e2b8baeb2
* Add Box plugin (i.e. black box) * Add SentimentBox, EmotionBox and MappingMixin * Refactored CustomDict
24 lines
634 B
Python
24 lines
634 B
Python
#!/usr/local/bin/python
|
|
# coding: utf-8
|
|
|
|
emoticons = {
|
|
'pos': [':)', ':]', '=)', ':D'],
|
|
'neg': [':(', ':[', '=(']
|
|
}
|
|
|
|
emojis = {
|
|
'pos': ['😁', '😂', '😃', '😄', '😆', '😅', '😄' '😍'],
|
|
'neg': ['😢', '😡', '😠', '😞', '😖', '😔', '😓', '😒']
|
|
}
|
|
|
|
|
|
def get_polarity(text, dictionaries=[emoticons, emojis]):
|
|
polarity = 'marl:Neutral'
|
|
for dictionary in dictionaries:
|
|
for label, values in dictionary.items():
|
|
for emoticon in values:
|
|
if emoticon and emoticon in text:
|
|
polarity = label
|
|
break
|
|
return polarity
|