-
Notifications
You must be signed in to change notification settings - Fork 2
/
GranularitySentence.py
111 lines (94 loc) · 2.98 KB
/
GranularitySentence.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
'''import pycurl
from StringIO import StringIO
b = StringIO()
c = pycurl.Curl()
c.setopt(c.URL, 'http://text-processing.com/api/sentiment/')
c.setopt(pycurl.POSTFIELDS, "text=great")
c.setopt(pycurl.WRITEFUNCTION, b.write)
c.perform()
c.close()
result = b.getvalue()
print(result)
'''
import json
import pycurl
import os
from StringIO import StringIO
def osprint(param):
os.system('printf "' + word + ' : ' + str(param) + "\n\">> gransent.txt")
def Granularity(sentenceArray):
bad = 0
good = 0
for sentence in sentenceArray:
# print(sentence)
try:
buf = StringIO()
c = pycurl.Curl()
c.setopt(c.URL, 'http://text-processing.com/api/sentiment/')
c.setopt(c.WRITEFUNCTION, buf.write)
c.setopt(c.HTTPHEADER, ['Accept-Charset: UTF-8'])
c.setopt(c.POSTFIELDS, "text=" + sentence)
c.setopt(pycurl.PROXY, '127.0.0.1:9050')
c.setopt(pycurl.PROXYTYPE, pycurl.PROXYTYPE_SOCKS5)
c.perform()
c.close()
data = buf.getvalue()
os.system("printf \"" + word + " , " + sentence + data + "\n\">> gransentdebug.txt")
print(word, sentence, data)
if ("Throttled" in data):
print("Throttled")
from TorCtl import TorCtl
conn = TorCtl.connect(controlAddr="127.0.0.1", controlPort=9151, passphrase="zazaking")
print(conn.is_live())
conn.send_signal("NEWNYM")
# conn.sendAndRecv('signal newnymrn')
conn.close()
import time
time.sleep(5)
print
"renewed"
info = json.dumps(data)
json_object = json.loads(json.loads(info))
#print(json_object)
#print(json_object['label'])
if str(json_object['label']) == "neg":
#print("neg")
bad = bad + 1
if str(json_object['label']) == "pos":
#print("pos")
good = good + 1
except Exception as e:
print(e)
# print (good)
#print (bad)
shifted = 0
#if 'not' in sentence:
# shifted == 1
# 0 good
#1 bad
#2 neutral
if ((good > bad) & (shifted == 0)):
osprint(0)
#print ("a good word")
elif ((good > bad) & (shifted == 1)):
osprint(1)
#print ("bad word")
elif ((good < bad) & (shifted == 0)):
osprint(1)
# print ("a bad word")
elif ((good < bad) & (shifted == 1)):
osprint(0)
# print ("good word")
else:
osprint(2)
# print ("neutral word")
with open("list.txt") as f:
content = f.readlines()
for word in content:
word = word.strip()
# print(word)
with open("wordsint4/" + word) as f:
content = f.readlines()
sentenceArray = content
#print(sentenceArray)
Granularity(sentenceArray)