forked from ronilp/Finding-Influencers-in-Social-Networks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgui.py
229 lines (198 loc) · 6.75 KB
/
gui.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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
import Tkinter
import fileinput
from Tkinter import *
import subprocess
import os
top = Tkinter.Tk()
text=Text(top)
text.grid(row=2,column=1,rowspan=10,columnspan=2,sticky=E)
scr = Scrollbar(top)
scr.config(command=text.yview)
text.config(yscrollcommand=scr.set)
scr.grid(row=2,column=3,sticky=E,ipady=165,rowspan=10)
L1 = Label(top, text="Access token",width=18)
L1.grid(row=0,column=0,sticky=W)
E1 = Entry(top, bd =5,width=40)
E1.grid(row=0,column=1,sticky=W)
def callback():
file1=open("utilities.py")
file2=open("new.py","w")
for line in file1.readlines():
if 'access_token = ' in line:
line='access_token = ' +'"'+str(E1.get())+'"'+'\n'
file2.write(line)
file2.close()
os.remove("utilities.py")
os.rename("new.py","utilities.py")
text.insert(INSERT, "Access token saved.")
#execfile("utilities.py")
def method():
child = subprocess.Popen(['python', '-u', 'getData.py'], stdout=subprocess.PIPE)
text.delete("1.0",END)
for line in iter(child.stdout.readline, ''):
text.insert(INSERT, line)
text.see(END)
text.update_idletasks()
child.stdout.close()
child.wait()
B = Tkinter.Button(top, text ="Find Friends",width=15, command = method)
b = Button(top, text="enter", width=15, command=callback)
b.grid(row=0,column=2,sticky=E)
B.grid(row=2,column=0,sticky=W)
c1=""
c2=""
c3=""
id1=0
def influence():
child = subprocess.Popen(['python', '-u', 'getFullInfluenceScore.py'], stdout=subprocess.PIPE)
text.delete("1.0",END)
for line in iter(child.stdout.readline, ''):
text.insert(INSERT, line)
text.see(END)
text.update_idletasks()
child.stdout.close()
child.wait()
child = subprocess.Popen(['python', '-u', 'clusterLevelResults.py'], stdout=subprocess.PIPE)
text.delete("1.0",END)
for line in iter(child.stdout.readline, ''):
text.insert(INSERT, line)
text.see(END)
text.update_idletasks()
child.stdout.close()
child.wait()
b2= Button(top, text="Find influencers", width=15, command=influence)
def influencers():
file1=open("utilities.py")
file2=open("new.py","w")
for line in file1.readlines():
if 'PID = ' in line:
line='PID = ' +str(E2.get())+'\n'
file2.write(line)
file2.close()
os.remove("utilities.py")
os.rename("new.py","utilities.py")
execfile('getResults.py')
text.delete("1.0",END)
out = open('tempfile.txt', 'r')
numLines = int(out.readline())
for line in range(numLines):
text.insert(INSERT, line)
'''
child = subprocess.Popen(['python', '-u', 'getResults.py'], stdout=subprocess.PIPE)
text.delete("1.0",END)
for line in iter(child.stdout.readline, ''):
text.insert(INSERT, line)
text.see(END)
text.update_idletasks()
child.stdout.close()
child.wait()
'''
def get_likes_button():
# c2="Button4"
child = subprocess.Popen(['python', '-u', 'getLikes.py'], stdout=subprocess.PIPE)
text.delete("1.0",END)
for line in iter(child.stdout.readline, ''):
text.insert(INSERT, line)
text.see(END)
text.update_idletasks()
child.stdout.close()
child.wait()
# text.delete("1.0",END)
# text.insert(INSERT,c2)
b4= Button(top, text="Get Likes", width=15, command=get_likes_button)
def getPages_button():
# c2="button5"
# text.delete("1.0",END)
# text.insert(INSERT,c2)
child = subprocess.Popen(['python', '-u', 'getPages.py'], stdout=subprocess.PIPE)
text.delete("1.0",END)
for line in iter(child.stdout.readline, ''):
text.insert(INSERT, line)
text.see(END)
text.update_idletasks()
child.stdout.close()
child.wait()
b5= Button(top, text="Get Page Posts", width=15, command=getPages_button)
def button6():
child = subprocess.Popen(['python', '-u', 'getPageData2.py'], stdout=subprocess.PIPE)
text.delete("1.0",END)
for line in iter(child.stdout.readline, ''):
text.insert(INSERT, line)
text.see(END)
text.update_idletasks()
child.stdout.close()
child.wait()
# c2="button6"
# text.delete("1.0",END)
# text.insert(INSERT,c2)
b6= Button(top, text="Remove Stopwords", width=15, command=button6)
L3 = Label(top, text="No.of clusters",width=18)
E3 = Entry(top, bd =5,width=20)
def number():
file1=open("utilities.py")
file2=open("new.py","w")
for line in file1.readlines():
if 'KVAL = ' in line:
line='KVAL = '+str(E3.get())+'\n'
file2.write(line)
file2.close()
os.remove("utilities.py")
os.rename("new.py","utilities.py")
child = subprocess.Popen(['python', '-u', 'kmeans.py'], stdout=subprocess.PIPE)
text.delete("1.0",END)
for line in iter(child.stdout.readline, ''):
text.insert(INSERT, line)
text.see(END)
text.update_idletasks()
child.stdout.close()
child.wait()
child = subprocess.Popen(['python', '-u', 'pageAnalytics.py'], stdout=subprocess.PIPE)
for line in iter(child.stdout.readline, ''):
text.insert(INSERT, line)
text.see(END)
text.update_idletasks()
child.stdout.close()
child.wait()
b1 = Button(top, text="Cluster Pages", width=15, command=number)
b1.grid(row=8,column=0,sticky=W)
L3.grid(row=6,column=0,sticky=W)
E3.grid(row=7,column=0,sticky=W)
#def button7():
# c2="button7"
# text.delete("1.0",lEND)
# text.insert(INSERT,c2)
#b7= Button(top, text="button7", width=10, command=button7)
b4.grid(row=3,column=0,sticky=W)
b5.grid(row=4,column=0,sticky=W)
b6.grid(row=5,column=0,sticky=W)
#b7.grid(row=7,column=0,sticky=W)
b3= Button(top, text="Find Influencers for a Page", width=25, command=influencers)
L2 = Label(top, text="Page ID",width=18)
E2 = Entry(top, bd =5,width=40)
b3.grid(row=12,column=2,sticky=W)
E2.grid(row=12,column=1,sticky=W)
L2.grid(row=12,column=0,sticky=W)
b2.grid(row=11,column=0,sticky=W)
def community():
child = subprocess.Popen(['python', '-u', 'getPartialInfluenceScore.py'], stdout=subprocess.PIPE)
text.delete("1.0",END)
for line in iter(child.stdout.readline, ''):
text.insert(INSERT, line)
text.see(END)
text.update_idletasks()
child.stdout.close()
child.wait()
def contribution():
child = subprocess.Popen(['python', '-u', 'clusterContribution.py'], stdout=subprocess.PIPE)
text.delete("1.0",END)
for line in iter(child.stdout.readline, ''):
text.insert(INSERT, line)
text.see(END)
text.update_idletasks()
child.stdout.close()
child.wait()
b7= Button(top, text="Open Community Score", width=15, command=community)
b7.grid(row=9,column=0,sticky=W)
b8= Button(top, text="Cluster Contribution", width=15, command=contribution)
b8.grid(row=10,column=0,sticky=W)
top.mainloop()