-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathchatterbox.py
35 lines (27 loc) · 1.03 KB
/
chatterbox.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
import logging
from api import API
LOGGER = logging.getLogger('APICompare.Chatterbox')
class Chatterbox(API):
def __init__(self, mashape_auth, language='en', domain=None):
self.name = 'chatterbox'
self.language = language
self.mashape_auth = mashape_auth
self.url = "https://chatterbox-analytics-sentiment-analysis-free.p.mashape.com/sentiment/current/classify_text/"
def extract_label(self, score):
"""Given the score, output the label. Ranges {-1, 1}
"""
if -0.2 < score < 0.2:
return '0'
elif score > 0.2:
return '+'
else:
return '-'
def analyse(self, text):
"""Assign the sentiment label for the text.
:return label: +, -, or 0
"""
params = {'text': text, 'lang': self.language}
headers = {'X-Mashape-Authorization': self.mashape_auth}
data = self.get_data(params, headers)
LOGGER.debug("Got response: %r" % data)
return self.extract_label(data['value'])