Jason 2 years ago
parent
commit
2c78743760

+ 5 - 3
website_clickjobs/type-V/_execute.py

@@ -31,7 +31,7 @@ def restart_browser():
 
 resultdict={'搜尋詞':[],'網域':[],'結果標題':[],'結果網址':[],'結果名次':[]}
 
-def process_one(term, target, n, sr):
+def process_one(term, target, n, sr, se):
     try:
         print(term)
 
@@ -91,6 +91,8 @@ def process_one(term, target, n, sr):
             print("Clicked")
             time_stamp = datetime.fromtimestamp(time.time())
             time_stamp = time_stamp.strftime("%Y-%m-%d %H:%M:%S")
+            if se==0:
+                table=db['general_log']
             table.insert({'ranking':resultrank,'kw':term,'results':count,'url':resultlink,'title':resultttl,'dt':time_stamp})
             time.sleep(30)
         
@@ -102,9 +104,9 @@ def process_one(term, target, n, sr):
 
     #db_local.close()
 
-def execute(termlist, target, n, sr):
+def execute(termlist, target, n, sr, se):
     for term in termlist:
-        process_one(term, "", n, sr)
+        process_one(term, "", n, sr, se)
         parser = argparse.ArgumentParser()
         parser.add_argument('--loop',action="store_true")
         args = parser.parse_args()

+ 3 - 2
website_clickjobs/type-V/c1.py

@@ -24,11 +24,12 @@ clickvideo = 2 # set to 1 to alert if video is found (DOES NOT CLICK!), requires
 # ^ set to 2 to click the video when found, requires whitelist
 # ^ any other value will only search for videos based on termlist
 savefile = 0 # set to 1 to save screenshot and ranking to file
+sec = 1
 
 if clickvideo == 1 or clickvideo == 2:
     while True:
         kw, target = pickvideo()
-        process_one(kw, target, clickvideo, savefile)
+        process_one(kw, target, clickvideo, savefile, sec)
         time.sleep(10)
 elif savefile == 1:
-    execute(termlist, "", clickvideo, savefile)
+    execute(termlist, "", clickvideo, savefile, sec)

+ 3 - 2
website_clickjobs/type-V/hhh.py

@@ -15,11 +15,12 @@ clickvideo = 2 # set to 1 to alert if video is found (DOES NOT CLICK!), requires
 # ^ set to 2 to click the video when found, requires whitelist
 # ^ any other value will only search for videos based on termlist
 savefile = 0 # set to 1 to save screenshot and ranking to file
+sec = 0 #sikrit
 
 if clickvideo == 1 or clickvideo == 2:
     while True:
         kw, target = pickvideo()
-        process_one(kw, target, clickvideo, savefile)
+        process_one(kw, target, clickvideo, savefile, sec)
         time.sleep(15)
 elif savefile == 1:
-    execute(termlist, "", clickvideo, savefile)
+    execute(termlist, "", clickvideo, savefile, sec)