redhongx

【app.py】注释部分情感分析相关代码

Showing 1 changed file with 4 additions and 4 deletions
@@ -32,13 +32,13 @@ def catch_all(path): @@ -32,13 +32,13 @@ def catch_all(path):
32 def run_script(): 32 def run_script():
33 current_dir = os.path.dirname(os.path.abspath(__file__)) 33 current_dir = os.path.dirname(os.path.abspath(__file__))
34 spider_script = os.path.join(current_dir, 'spider', 'main.py') 34 spider_script = os.path.join(current_dir, 'spider', 'main.py')
35 - cutComments_script = os.path.join(current_dir, 'utils', 'cutComments.py')  
36 - cipingTotal_script = os.path.join(current_dir, 'utils', 'cipingTotal.py') 35 + # cutComments_script = os.path.join(current_dir, 'utils', 'cutComments.py')
  36 + # cipingTotal_script = os.path.join(current_dir, 'utils', 'cipingTotal.py')
37 37
38 scripts = [ 38 scripts = [
39 ("Spider Script", spider_script), 39 ("Spider Script", spider_script),
40 - ("Cut Comments Script", cutComments_script),  
41 - ("Ciping Total Script", cipingTotal_script) 40 + # ("Cut Comments Script", cutComments_script),
  41 + # ("Ciping Total Script", cipingTotal_script)
42 ] 42 ]
43 43
44 for script_name, script_path in scripts: 44 for script_name, script_path in scripts: