Jason 2 years ago
parent
commit
6be8d785d0

+ 4 - 2
website_clickjobs/type-Y/_execute.py

@@ -14,7 +14,7 @@ from random import randint
 #from setting import rua
 
 db = dataset.connect('mysql://choozmo:pAssw0rd@db.ptt.cx:3306/seo?charset=utf8mb4')
-table=db['nda_log']
+table=db['general_log']
 path = 'C:/ChromeDriver' #pls adjust
 path_z = 'C:/ChromeDriver' #pls adjust
 
@@ -30,10 +30,12 @@ def restart_browser():
 
 resultdict={'搜尋詞':[],'網域':[],'結果標題':[],'結果網址':[],'結果名次':[]}
 
-def process_one(term, target, n, sr):
+def process_one(term, target, n, confidential):
     try:
         print(term)
 
+        table=db['nda_log'] if confidential==1 else table
+
         driver=restart_browser()
         # escaped_search_term=urllib.parse.quote(term)
         yturl = 'https://www.youtube.com/results?search_query=' + term

+ 3 - 1
website_clickjobs/type-Y/c1.py

@@ -17,6 +17,8 @@ def pickvideo():
         whitelist = ["https://www.youtube.com/watch?v=7UGiKEc2JEU","https://www.youtube.com/watch?v=By63yTOiPFQ","https://www.youtube.com/watch?v=QzyTD949cVk","https://www.youtube.com/watch?v=WC_rYXVP2g8","https://www.youtube.com/watch?v=9lJ3gnqMT4o","https://www.youtube.com/watch?v=iA4__EcJE5I","https://www.youtube.com/watch?v=fx4fTBh9PFo","https://www.youtube.com/watch?v=WC_rYXVP2g8","https://www.youtube.com/watch?v=juJTjzi4DV0","https://www.youtube.com/watch?v=D9A8S1XaPnA","https://www.youtube.com/watch?v=tbdpEt65LRI","https://www.youtube.com/watch?v=Z4mts-HrBvU","https://www.youtube.com/watch?v=Hi-IY6R7_10","https://www.youtube.com/watch?v=e2jILHgLW10"]
     return term, random.choice(whitelist)
 
+is_confidential = 1 #set to 1 if true
+
 termlist = ["信義房屋","信義 房屋","信義房仲","信義 房仲"]
 
 clickvideo = 2 # set to 1 to alert if video is found (DOES NOT CLICK!), requires whitelist
@@ -26,5 +28,5 @@ clickvideo = 2 # set to 1 to alert if video is found (DOES NOT CLICK!), requires
 if clickvideo == 1 or clickvideo == 2:
     while True:
         kw, target = pickvideo()
-        process_one(kw, target, clickvideo, 0)
+        process_one(kw, target, clickvideo, is_confidential)
         time.sleep(10)

+ 25 - 0
website_clickjobs/type-Y/drhuang.py

@@ -0,0 +1,25 @@
+from _execute import *
+import random
+
+def pickvideo():
+    n = 0
+    if n==0:
+        term = "台北牙周病醫生"
+        whitelist = ["https://www.youtube.com/watch?v=eFamkpqbVLM","https://www.youtube.com/watch?v=aC2SIWzqvKY"]
+    return term, random.choice(whitelist)
+
+is_confidential = 0 #set to 1 if true
+
+termlist = ["信義房屋","信義 房屋","信義房仲","信義 房仲"]
+
+clickvideo = 2 # set to 1 to alert if video is found (DOES NOT CLICK!), requires whitelist
+# ^ set to 2 to click the video when found, requires whitelist
+# ^ any other value will only search for videos based on termlist
+
+if clickvideo == 1 or clickvideo == 2:
+    while True:
+        kw, target = pickvideo()
+        term = term + "推薦" if random.randint(0,3) < 2 else term
+        term = term + " 黃湘雲" if random.randint(0,3) < 2 else term
+        process_one(kw, target, clickvideo, is_confidential)
+        time.sleep(10)