-
Notifications
You must be signed in to change notification settings - Fork 0
/
datagui.py
1310 lines (963 loc) · 43.2 KB
/
datagui.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
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# -*- coding: utf-8 -*-
"""
Created on Thu Apr 15 22:39:37 2021
@author: byzjz
"""
from tkinter import*
from tkinter import ttk
from tkinter.filedialog import*
import tkinter
from tkinter.messagebox import askokcancel,showinfo,WARNING
import ast
import logging
import json
import os
import copy
import time
import threading
from get_xueqiu import Xueqiuspider
#设置日志格式
LOG_FORMAT = "%(asctime)s - %(levelname)s - %(message)s"
DATE_FORMAT = "%m/%d/%Y %H:%M:%S %p"
#logging.basicConfig(filename='info.log', level=logging.DEBUG, format=LOG_FORMAT, datefmt=DATE_FORMAT)
logging.basicConfig( level=logging.DEBUG, format=LOG_FORMAT, datefmt=DATE_FORMAT)
#存放评论信息的结构体
#分开两个结构体:socket_all中包含comment和tag和label,socket只包含comment和tag
class stock:
def __init__(self):
self.comment_text=''
self.label_list=[]
self.tag=0
#判断是否导入了文件
global is_import_file
is_import_file=False
#tag_all存放所有的标签信息
tag_all=[]
if os.path.exists("tag.json")==False:
f=open('tag.json','w')
f.close()
else:
f=open('tag.json','r')
for line in f.readlines():
dic=json.loads(line)
tag_all.append(dic)
f.close()
#comment_all从xueqiu_comment文件中读取数据,存放所有的评论信息(评论,标签,标志位)
#comment_all存放stock结构体
comment_all=[]
f=open('xueqiu_comment.json','r')
for line in f.readlines():
comment_dict=ast.literal_eval(line)
tmp=stock()
tmp.comment_text=comment_dict['comment_text']
for item in tag_all:
tmp.label_list.append(item)
tmp.tag=comment_dict['tag']
comment_all.append(tmp)
f.close()
#comment_all正常读取
print('comment_all长度',len(comment_all))
#comment用于主界面listbox存放评论
comment=[]
#评论下标,双击主界面某一评论时,更新该值
global comment_detail_index
data_label=[]
#存放统计数据的选项统计信息
data_list=[]
#开始下载/停止下载标志位
download_flag=[]
download_flag.append(1)
if os.path.exists("statistics.json")==False:
f=open('statistics.json','w')
f.close()
else:
f=open('statistics.json','r')
for line in f.readlines():
dic=json.loads(line)
data_list.append(dic)
f.close()
for item in data_list:
print(item)
#存放已经标记的评论
labeled_comment=[]
if os.path.exists("labeled_comment.json")==False:
f=open('labeled_comment.json','w')
f.close()
else:
f=open('labeled_comment.json','r')
for line in f.readlines():
comment_dict=ast.literal_eval(line)
#print(comment_dict)
tmp=stock()
tmp.comment_text=comment_dict['comment_text']
tmp.label_list=comment_dict['label_list']
tmp.tag=comment_dict['tag']
labeled_comment.append(tmp)
f.close()
#目录查询
def selectPath(new_path):
_path=askdirectory()
new_path.set(_path)
#正确获取文件路径
print(new_path.get())
#文件目录添加和文件添加
def create_file(new_path,new_folder):
#接收用户输入数据打印
#folder没有读取到数据?
print(new_folder.get())
print(new_folder)
#print(new_path.get())
#dirs = path.get()
#file = open(dirs+'/'+folder.get(),"w")
messagebox.showinfo("提示","文件创建成功")
#新建文件
def new_file():
new_file_win=Tk()
new_file_win.title("新建文件")
new_file_win.geometry("300x150")
#存储用户输入信息
new_path=StringVar()
new_folder=StringVar()
Label(new_file_win,text="目标路径").place(x=10,y=10)
Entry(new_file_win,textvariable=new_path).place(x=70,y=10)
Button(new_file_win,text="路径选择",command=lambda:selectPath(new_path)).place(x=220,y=10)
Label(new_file_win,text="文件名").place(x=10,y=60)
Entry(new_file_win,textvariable=new_folder).place(x=70,y=60)
Button(new_file_win,text="确定",command=lambda:create_file(new_path,new_folder)).place(x=220,y=60)
new_file_win.mainloop()
#文件导入
def importfile(lb):
global filename
global is_import_file
filename=askopenfilename(defaultextension=".txt")
logging.info("导入文件",filename)
if(filename==""):
filename=None
else:
#root.title("导入"+os.path.basename(filename))
#导入新的文件,先清空listbox和comment中的内容
lb.delete(0,len(comment)-1)
comment.clear()
f=open(filename,"r")
for line in f.readlines():
#先将读出的字符串转成字典,再按照字段读出数据
comment_dict=ast.literal_eval(line)
comment.append(comment_dict['comment_text'])
lb.insert("end",comment_dict['comment_text'])
f.close()
is_import_file=True
return filename
#文件保存
def filesave():
global filename
try:
f=open(filename,'w')
#写入保存内容
#f.write(msg)
f.closed()
except:
filesaveas()
#文件另存为
def filesaveas():
f=asksaveasfilename(initialfile="未命名.txt",defaultextension=".txt")
global filename
filename=f
#存文件
#3个提示信息
def downloadMessage1(nwin):
msg=Label(nwin,text="下载中...")#padx设置x方向内边距, pady设置y方向内边距
msg.grid(row=2)
def downloadMessage2(nwin):
msg=Label(nwin,text="下载停止")#padx设置x方向内边距, pady设置y方向内边距
msg.grid(row=2)
def downloadMessage3(nwin):
msg=Label(nwin,text="下载完毕")#padx设置x方向内边距, pady设置y方向内边距
msg.grid(row=2)
#下载管理
def download_start(dwin,download_progress,flag):
xueqiu = Xueqiuspider()
t=threading.Thread(target=xueqiu.run(dwin,download_progress,flag),name='t')
t.start()
def download_stop(flag):
t=threading.Thread(target=is_download_stop(flag),name='t2')
t.start()
def is_download_stop(flag):
flag[0]=0
print('停止下载')
def download(flag):
strV='SH601318'
dwin=Tk()
dwin.title("下载管理")
dwin.geometry("400x250")
label_download=Label(dwin,text="股票代码")
stock_info=Entry(dwin,font=('Arial',14))
label_download.place(x=40,y=10)
stock_info.place(x=100,y=10)
start_download=Button(dwin,text="开始下载",command=lambda:download_start(dwin,download_progress,flag))
start_download.place(x=50,y=100)
stop_download=Button(dwin,text="停止下载",command=lambda:download_stop(download_flag))
stop_download.place(x=300,y=100)
download_progress=ttk.Progressbar(dwin,length=200,mode="determinate",orient=HORIZONTAL)
download_progress.place(x=100,y=150)
dwin.mainloop()
#统计图
#用listbox存选项
#用循环画多个扇形
#统计图中读出的数据格式
#data_list=[{'tag':'是否为推广贴','是':'50','否':'60'},{'tag':'评论情感色彩','积极':'70','消极':'100','中立':'20'},{'tag':'是否与股票相关','是':'50','否':'44'}]
#扇形填充颜色
data_color=['red','blue','yellow','green','purple','orange','white','black']
#存放下拉框显示的标签名
data_label_name=[]
for item in data_list:
data_label_name.append(item['tag'])
def show_chart(event,canvas_chart,data_label,data_listbox):
index=data_label.current()
#清空画布重新绘图
#统计标签选项总数
count_sum=0
for item in data_list:
print(item)
for key in data_list[index]:
if key!='tag':
print('key:',key)
count_sum=count_sum+int(data_list[index][key])
print('sum:',count_sum)
#绘制扇形
init_arc=0
i=0
#清空之前的选项
data_listbox.delete(0,END)
for key in data_list[index]:
if key!='tag':
if count_sum!=0:
canvas_chart.create_arc(250,250,50,50,start=init_arc,extent=int(data_list[index][key])/count_sum*360,fill=data_color[i])
init_arc=init_arc+int(data_list[index][key])/count_sum*360
data_tmp=key+' '+data_color[i]+' '+str(int(int(data_list[index][key])/count_sum*100))+'%'
data_listbox.insert(END,data_tmp)
if int(data_list[index][key])==count_sum:
break
i=i+1
#data_label是下拉框,在下拉框中选择标签后生成统计图和相关信息
def datachart():
cwin=Tk()
cwin.title("统计图")
cwin.geometry("500x500")
data_label=ttk.Combobox(cwin,values=data_label_name,state='readonly')
#下拉框事件绑定
data_label.bind("<<ComboboxSelected>>",lambda event:show_chart(event,canvas_chart,data_label,data_listbox))
data_label.current(0)
data_label.place(x=20,y=20,anchor='w')
canvas_chart=Canvas(cwin,height=300,width=300) #设置画布样式
canvas_chart.place(x=100,y=40)
#循环画出每个标签中的多个扇形
#canvas_chart.create_arc(250,250,50,50,start=0,extent=240,fill="red")
#canvas_chart.create_arc(250,250,50,50,start=240,extent=120,fill="blue")
data_listbox=Listbox(cwin)
data_listbox.place(x=180,y=310)
cwin.mainloop()
#在标签管理界面中删除标签
#同时也要删除统计数据中的对应标签
def tag_delete(tag_listbox):
tmp_tag=tag_listbox.curselection()
tag_index=list(tmp_tag)
tag_index.sort(reverse=True)
print(tag_index)
value=askokcancel('提示','确认删除?')
if value==True:
for item in tag_index:
tag_listbox.delete(item)
del tag_all[item]
#将更新后的标签信息覆写回文件中
f=open('tag.json','w+')
for item in tag_all:
tag_new=json.dumps(item,ensure_ascii=False)
f.write(tag_new)
f.write('\n')
f.close()
#在标签管理类中删除标签后也要在统计图文件中删除对应的标签
#统计图中是否需要删除标签?
#新建标签
#第一个输入框输入标签
#第二个输入框输入标签的选项,后面有一个确认按钮,点击确认后添加到下方的listbox
#listbox展示全部的标签选项,点击鼠标右键可以删除选中的选项
#点击最下方的确认按钮后,创建成功,写入到保存标签的文件中,同时也加入到commet类中的label中
#添加标签名
def tag_name_confirm(entag,tag_tmp,data_label):
tag_tmp['tag']=entag.get()
data_label['tag']=entag.get()
print(tag_tmp['tag'])
#确认选项名
def tag_choice_confirm(enchoice,choicelist,tag_tmp,data_label,choice_index):
choicelist.insert("end",enchoice.get())
#将添加的选项添加到tag_tmp字典中
tag_tmp[enchoice.get()]=choice_index[0]
data_label[enchoice.get()]=0
choice_index[0]=choice_index[0]+1
enchoice.delete(0,END)
#新建标签时,删除标签选项信息
def choice_delete(even,choice):
tmp=choice.curselection()
print(tmp)
index=tmp[0]
choice.delete(index)
#将新建的标签信息,写入到文件中
#添加选项的默认选择值choice=0
#新建标签信息添加到统计图文件中
def create_confirm(event,tag_tmp,new_label,data_label,tag_all,tag_listbox):
tag_tmp['choice']=0
tag_all.append(tag_tmp)
tag_listbox.insert('end',tag_tmp['tag'])
#choice_list.insert('end', tag_tmp['tag'])
f=open("tag.json","a")
#确认后将新的标签信息写回到listbox中
tag_tmp=json.dumps(tag_tmp,ensure_ascii=False)
f.writelines(tag_tmp)
f.write('\n')
f.close()
#将标签写入到统计数据中
#要先将统计数据中是选项计数清零,加入新的标签后再写回文件中
data_list.append(new_label)
f=open('statistics.json','w')
for item in data_list:
print(item)
item=json.dumps(item,ensure_ascii=False)
f.writelines(item)
f.write('\n')
f.close()
messagebox.showinfo('提示','创建成功')
#增加标签后,xueqiu_comment中的标志位要重新置为0,已标注评论文件中的数据清空,统计数据中的选项计数要清零
def tag_add(tag_listbox):
#创建一个字典保存当前创建的标签内容
tag_tmp={}
new_label={}
tag_add_win=Tk()
tag_add_win.geometry("350x400")
tag_add_win.title("新建标签")
fm_tag_add=Frame(tag_add_win,width=350,height=85)
fm_tag_choice=Frame(tag_add_win,width=350,height=85)
fm_choice_list=Frame(tag_add_win,width=350,height=180)
fm_add_confirm=Frame(tag_add_win,width=350,height=50)
fm_tag_add.grid(row=0)
fm_tag_choice.grid(row=1)
fm_choice_list.grid(row=2)
fm_add_confirm.grid(row=3)
#标签选项对应的值
choice_index=[]
choice_index.append(1)
input_label=Label(fm_tag_add,text="标签")
input_label.place(x=60,y=30)
#输入标签
input_tag=Entry(fm_tag_add)
input_tag.place(x=95,y=30)
#标签确认
input_tag_button=Button(tag_add_win,text="确认",command=lambda:tag_name_confirm(input_tag,tag_tmp,new_label))
input_tag_button.place(x=250,y=25)
input_choice=Label(fm_tag_choice,text="选项")
input_choice.place(x=60,y=20)
#输入选项
input_choice=Entry(fm_tag_choice)
input_choice.place(x=95,y=20)
#选项确认
#确认选项后添加到字典中
choice_button=Button(fm_tag_choice,text="确认",command=lambda:tag_choice_confirm(input_choice,choice_list,tag_tmp,new_label,choice_index))
choice_button.place(x=250,y=15)
#滚动条
choice_sc=Scrollbar(fm_choice_list)
choice_sc.pack(side=RIGHT,fill=Y)
#列表滚动,滚动条跟着滚动
#choice_list显示标签选项
choice_list=Listbox(fm_choice_list,yscrollcommand=choice_sc.set)
choice_list.pack(side=LEFT,fill=BOTH,expand=True)
#右键删除选项
#删除listbox对应项后,也要删除tag_tmp字典中的对应项
choice_list.bind('<Button-3>',lambda event:choice_delete(event,choice_list))
#滚动条动,列表跟着滚动
choice_sc.config(command=comment_list.yview)
#创建确认按钮
#确认创建后,添加到文件中
#tag_confirm_button=Button(fm_add_confirm,text="确认",command=lambda event:create_confirm(event,tag_tmp,new_label,data_label,tag_all,choice_list,tag_listbox))
tag_confirm_button=Button(fm_add_confirm,text="确认")
tag_confirm_button.bind('<Button-1>',lambda event:create_confirm(event,tag_tmp,new_label,data_label,tag_all,tag_listbox))
tag_confirm_button.place(x=160,y=10)
tag_add_win.mainloop()
#标签管理
def tag():
tag_win=Tk()
tag_win.geometry("400x400")
tag_win.title("标签管理")
#使用listbox展示所有标签,listbox为多选模式
#设置滚动条
main_tag_sc=Scrollbar(tag_win)
main_tag_sc.pack(side=RIGHT,fill=Y)
#列表滚动,滚动条跟着滚动
tag_listbox=Listbox(tag_win,width=100,height=15,selectmode=MULTIPLE,yscrollcommand=main_tag_sc.set)
tag_listbox.pack(side=LEFT,fill=BOTH,expand=True)
#滚动条动,列表跟着滚动
main_tag_sc.config(command=tag_listbox.yview)
for item in tag_all:
tag_listbox.insert("end",item['tag'])
menubar=Menu(tag_win)
menubar.add_command(label='新建',command=lambda:tag_add(tag_listbox))
menubar.add_command(label='删除',command=lambda:tag_delete(tag_listbox))
tag_win['menu']=menubar
tag_win.mainloop()
def confirm():
answer=askokcancel(title="删除标签",message="确认删除标签?",icon=WARNING)
#查看上一条评论
def pre_comment(even,text):
global comment_detail_index
comment_detail_index-=1
#print(comment_detail_index)
logging.info("当前查看下标:",comment_detail_index)
if comment_detail_index<0:
comment_detail_index=0
messagebox.showinfo('提示','已经是第一条评论了')
#清空text原有内容
text.delete('1.0','end')
#读入新的内容
text.insert('end',comment[comment_detail_index])
#查看下一条评论
def nex_comment(even,text):
global comment_detail_index
comment_detail_index+=1
print(comment_detail_index)
if comment_detail_index>len(comment):
comment_detail_index=len(comment)-1;
messagebox.showinfo('提示','已经是最后一条评论了')
text.delete('1.0','end')
text.insert('end',comment[comment_detail_index])
#批量删除
#不能分开下标使用delete,每次delete后,listbox元素下标会发生变化,不能继续用原来的下标
#可以将要删除的索引从大的开始删除,这样删除后不会影响到较小的索引
def main_delete_multiple():
tmp=comment_list.curselection()
index=list(tmp)
index.sort(reverse=True)
#print(index)
#删除提示
value=askokcancel('提示','确认删除?')
if value==True:
for item in index:
logging.info("删除评论索引")
comment_list.delete(item)
#根据tag删除评论
#xueqiu_comment能正常删除,但是labeled_comment不能正常删除
for item in index:
logging.info("删除评论")
print("删除评论comment:",comment[item])
print("删除评论comment_all:",comment_all[item].comment_text)
del comment[item]
if comment_all[item].tag==1:
for comment_tmp in labeled_comment:
if comment_tmp.comment_text==comment_all[item].comment_text:
print(comment_tmp.comment_text)
del comment_tmp
print("删除",comment_tmp)
del comment_all[item]
print("删除",comment_all[item])
else:
del comment_all[item]
print("删除",comment_all[item])
f=open('xueqiu_comment.json','w')
for item in comment_all:
tmp={}
item=item.__dict__
tmp['comment_text']=item['comment_text']
tmp['tag']=item['tag']
f.write(str(tmp))
f.write('\n')
f.close()
f=open('labeled_comment.json','w')
for item in labeled_comment:
tmp=item.__dict__
comment_tmp=json.dumps(tmp,ensure_ascii=False)
f.write(comment_tmp)
f.write('\n')
f.close()
#使用3个frame划分布局
#上半部分放text显示评论,下半部分放评论标签,最底放两个按钮
#将text_detail作为参数传入
#问题:只能移动一次,只能看到下一条评论(值传递,无法修改到外部变量)
def comment_detail(even):
global comment_detail_index
#评论内容
str=comment_list.get(comment_list.curselection())
tmp=comment_list.curselection()
print(tmp)
comment_detail_index=tmp[0]
print(comment_detail_index)
detail_win=Tk()
detail_win.geometry("400x400")
detail_win.title('评论详情')
'''
detail_menu=Menu(detail_win)
detail_menu.add_command(label='添加标签')
detail_menu.add_command(label='删除标签')
detail_menu.add_command(label='删除评论')
detail_win['menu']=detail_menu
'''
fm_text=Frame(detail_win,width=400,height=200,bg='blue')
fm_tag=Frame(detail_win,width=400,height=150,bg='red')
fm_button=Frame(detail_win,width=400,height=50,)
fm_text.grid(row=0)
fm_tag.grid(row=1)
fm_button.grid(row=2)
#显示详细评论
text_detail=Text(fm_text,width=55,height=14)
text_detail.pack(side='left')
#显示标签信息
text_detail.insert("end", str)
tag_sc=Scrollbar(fm_tag)
tag_sc.pack(side=RIGHT,fill=Y)
#列表滚动,滚动条跟着滚动
tag_list=Listbox(fm_tag,width=55,height=10,selectmode=MULTIPLE,yscrollcommand=tag_sc.set)
tag_list.pack(side=LEFT,fill=BOTH,expand=True)
#滚动条动,列表跟着滚动
tag_sc.config(command=tag_list.yview)
tag_name=[]
for item in tag_all:
tag_name.append(item['tag'])
for item in tag_name:
tag_list.insert("end",item)
#放置选择上一条和下一条按钮
#点击按钮后更新评论下标索引,和文本中评论内容
pre_button=Button(fm_button,text="上一条")
pre_button.bind("<Button-1>",lambda event:pre_comment(event,text_detail))
nex_button=Button(fm_button,text="下一条")
nex_button.bind("<Button-1>",lambda event:nex_comment(event,text_detail))
pre_button.place(x=0,y=0)
nex_button.place(x=350,y=0)
detail_win.mainloop()
#未标注评论
#查看上一条未来标注评论
#标签和按钮重新布局
def pre_unlabeled_comment(fm_choice,unlabeled_index,unlabeled_comment_list,text):
for widget in fm_choice.winfo_children():
widget.grid_forget()
unlabeled_index[0]=unlabeled_index[0]-1
print("评论下标",unlabeled_index[0])
if unlabeled_index[0]<0:
unlabeled_index[0]=0
messagebox.showinfo('提示','已经是第一条评论了')
text.delete('1.0','end')
text.insert('end',unlabeled_comment_list[unlabeled_index[0]].comment_text)
#查看下一条未标注评论
#标签和按钮重新布局
#选项的选择信息没有用的是上一条
def nxt_unlabeled_comment(fm_choice,unlabeled_index,unlabeled_comment_list,text):
for widget in fm_choice.winfo_children():
widget.grid_forget()
unlabeled_index[0]=unlabeled_index[0]+1
print("评论下标:",unlabeled_index[0])
if unlabeled_index[0]>=len(unlabeled_comment_list):
unlabeled_index[0]=len(unlabeled_comment_list)
messagebox.showinfo('提示','已经是最后一条评论了')
text.delete('1.0','end')
text.insert('end',unlabeled_comment_list[unlabeled_index[0]].comment_text)
#记录对选项的选择
#传入一个stock结构体,记录当前的选择
def select(v,index,unlabeled_index,unlabeled_comment_list):
print('select:',v.get())
print(len(unlabeled_comment_list))
unlabeled_comment_list[unlabeled_index[0]].label_list[index]['choice']=v.get()
print('tag:',unlabeled_comment_list[unlabeled_index[0]].label_list[index])
#确认对评论的标注,将已经标注的文件写入到labeled_comment.json中
#要将xueqiu_comment中对应评论的tag改为1,写回到xueqiu_comment中
#统计图数据中对应标签的选项计数递增,点击确认后写回到统计图数据文件中
#将新的评论加入到labeled_commen中
def b_confirm(event,unlabeled_index,unlabeled_comment_list,data_list,labeled_comment):
labeled_comment.append(unlabeled_comment_list[unlabeled_index[0]].__dict__)
print('新增已标注评论:',unlabeled_comment_list[unlabeled_index[0]])
f=open('labeled_comment.json','a')
tmp=unlabeled_comment_list[unlabeled_index[0]].__dict__
comment_tmp=json.dumps(tmp,ensure_ascii=False)
f.write(comment_tmp)
f.write('\n')
f.close()
#更新xueqiu_comment中tag的值
#找到对应的评论
#stock object is not iterable
print(unlabeled_comment_list[unlabeled_index[0]].comment_text)
print(unlabeled_comment_list[unlabeled_index[0]].tag)
for item in comment_all:
if item.comment_text==unlabeled_comment_list[unlabeled_index[0]].comment_text:
item.tag=1
#更新xueqiu_comment
f=open('xueqiu_comment.json','w')
for item in comment_all:
tmp={}
item=item.__dict__
tmp['comment_text']=item['comment_text']
tmp['tag']=item['tag']
f.write(str(tmp))
f.write('\n')
f.close()
#遍历所有标签,得到被选中的选项
for item in unlabeled_comment_list[unlabeled_index[0]].label_list:
for key in item:
if key!='tag'and key!='choice':
if item[key]==item['choice']:
for tmp in data_list:
if tmp['tag']==item['tag']:
for tmp_key in tmp:
if tmp_key==key:
tmp[tmp_key]=str(int(tmp[tmp_key])+1)
for item in data_list:
print(item)
#将更新后的data_list写回statistics.json中
f=open('statistics.json','w')
for item in data_list:
item=json.dumps(item,ensure_ascii=False)
f.writelines(item)
f.write('\n')
f.close()
#对标签的选项进行选择
def label_choice(even,fm_choice,label_list,tag_all,unlabeled_index,unlabeled_comment_list):
#隐藏没有选定的标签的选项
for widget in fm_choice.winfo_children():
widget.grid_forget()
index=label_list.current()
i=1
global v
v=IntVar()
#设置选项的默认值
#v.set(tag_all[index]['choice'])
#为什么v的值没有更新?
v.set(unlabeled_comment_list[unlabeled_index[0]].label_list[index]['choice'])
print("v:",v.get())
print("当前评论默认选项:",unlabeled_comment_list[unlabeled_index[0]].label_list[index]['choice'])
#根据标签选项生成按钮
for key in unlabeled_comment_list[unlabeled_index[0]].label_list[index]:
if key!='tag'and key!='choice':
b=Radiobutton(fm_choice,text=key,variable=v,value=unlabeled_comment_list[unlabeled_index[0]].label_list[index][key],command=lambda:select(v,index,unlabeled_index,unlabeled_comment_list))
b.grid(row=0,column=i)
i=i+1
#提示是否删除
#转跳到下一条评论再删除
def unlabeled_comment_delete(fm_choice,comment_list,unlabeled_index,unlabeled_comment_list,labeled_comment_text):
value=askokcancel('提示','确认删除?')
if value==True:
nxt_unlabeled_comment(fm_choice,unlabeled_index,unlabeled_comment_list,labeled_comment_text)
print("unlabeled_index:",unlabeled_index[0])
print("当前评论:",unlabeled_comment_list[unlabeled_index[0]].comment_text)
print("删除评论:",unlabeled_comment_list[unlabeled_index[0]-1].comment_text)
#删除评论comment和comment_all
for index in range(0,len(comment_all)):
if comment_all[index].comment_text==unlabeled_comment_list[unlabeled_index[0]-1].comment_text:
break;
#主界面评论没有被删除
print("index:",index)
print("comment_all删除:",comment_all[index].comment_text)
print("listbox删除:",comment_list.get(index))
#判断listbox不为空
print("is_import_file:",is_import_file)
if is_import_file==True:
comment_list.delete(index)
del comment[index]
del unlabeled_comment_list[unlabeled_index[0]-1]
del comment_all[index]
#更新xueqiu_comment
f=open('xueqiu_comment.json','w')
for item in comment_all:
tmp={}
item=item.__dict__
tmp['comment_text']=item['comment_text']
tmp['tag']=item['tag']
f.write(str(tmp))
f.write('\n')
f.close()
def unlabeled_comment(comment_list):
unlabeled_comment_win=Toplevel()
unlabeled_comment_win.geometry("500x470")
unlabeled_comment_win.title('未标注评论')
unlabeled_menu=Menu(unlabeled_comment_win)
unlabeled_menu.add_command(label='删除评论',command=lambda :unlabeled_comment_delete(fm_choice,comment_list,unlabeled_index,unlabeled_comment_list,unlabeled_comment_text))
unlabeled_comment_win['menu']=unlabeled_menu
#评论下标
unlabeled_index=[]
unlabeled_index.append(0)
#数据不会在这里更新
print(unlabeled_index[0])
#从comment_all中选出tag=0的评论
#问题读入的长度为空
#这个可以放到外面,程序运行时就读取
unlabeled_comment_list=[]
for item in comment_all:
if item.tag=='0':
#这里用了浅拷贝,应该使用深拷贝
#item.label_list=tag_all;
item.label_list=copy.deepcopy(tag_all)
#标签正常导入
unlabeled_comment_list.append(item)
print("评论长度:",len(unlabeled_comment_list))
tag_name=[]
#tag_name存放标签名,在下拉框中显示
for item in tag_all:
tag_name.append(item['tag'])
fm_text=Frame(unlabeled_comment_win,width=500,height=200)
#fm_choice_view=Frame(unlabeled_comment_win,width=500,height=230,bg='blue')
fm_confirm=Frame(unlabeled_comment_win,width=500,height=35)
fm_page=Frame(unlabeled_comment_win,width=500,height=35)
fm_tag=Frame(unlabeled_comment_win,width=200,height=200)
fm_choice=Frame(unlabeled_comment_win,width=300,height=200)
fm_text.place(x=0,y=0)
fm_tag.place(x=0,y=200)
fm_choice.place(x=200,y=200)
fm_confirm.place(x=0,y=400)
fm_page.place(x=0,y=435)
unlabeled_comment_text=Text(fm_text,width=70,height=15)
unlabeled_comment_text.grid(row=0,column=0)
print(unlabeled_comment_list[0].comment_text)
unlabeled_comment_text.insert('end',str(unlabeled_comment_list[0].comment_text))
#显示标签和评论信息
#在左侧的下拉框选择标签后,在右侧显示选项
label_list=ttk.Combobox(fm_tag,values=tag_name,state='readonly')
label_list.grid(row=0,column=0)
#下拉框事件绑定
label_list.bind("<<ComboboxSelected>>",lambda even:label_choice(even,fm_choice,label_list,tag_all,unlabeled_index,unlabeled_comment_list))
#点击确认后将评论信息写入到已标注文件中,同时需要更新统计图中的选项对应的计数
tag_confirm_button=Button(fm_confirm,text='确认')
tag_confirm_button.place(x=230,y=0)
tag_confirm_button.bind('<Button-1>',lambda event:b_confirm(event,unlabeled_index,unlabeled_comment_list,data_list,labeled_comment))
pre=Button(fm_page,text='上一条',command=lambda:pre_unlabeled_comment(fm_choice,unlabeled_index,unlabeled_comment_list,unlabeled_comment_text))
pre.place(x=5,y=0)
nxt=Button(fm_page,text='下一条',command=lambda :nxt_unlabeled_comment(fm_choice,unlabeled_index,unlabeled_comment_list,unlabeled_comment_text))
nxt.place(x=450,y=0)
unlabeled_comment_win.mainloop()
#更新评论同时更新old_labeled_choice
def labeled_nxt_comment(fm_choice,labeled_index,labeled_comment,labeled_comment_text,old_labeled_choice):
for widget in fm_choice.winfo_children():
widget.grid_forget()
labeled_index[0]=labeled_index[0]+1
if labeled_index[0]>len(labeled_comment):
labeled_index[0]=len(labeled_comment)
messagebox.showinfo('提示','已经是最后一条评论了')
labeled_comment_text.delete('1.0','end')
labeled_comment_text.insert('end',labeled_comment[labeled_index[0]].comment_text)
#更新选项记录
old_labeled_choice=[]
for i in range(0,len(labeled_comment[labeled_index[0]].label_list)):
tmp={}
for key in labeled_comment[labeled_index[0]].label_list[i]: