2018-01-03 08:39:30 +00:00
|
|
|
#!/usr/local/bin/python
|
2019-01-07 11:08:19 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
2019-07-17 14:29:30 +00:00
|
|
|
#
|
|
|
|
# Copyright 2014 Grupo de Sistemas Inteligentes (GSI) DIT, UPM
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
#
|
|
|
|
|
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
|