فهرست منبع

Merge remote-tracking branch 'origin/master'

zooey 1 سال پیش
والد
کامیت
f369fb12b5

+ 168 - 0
website_clickjobs/n2nart/_clickjob.py

@@ -0,0 +1,168 @@
+import time
+from datetime import datetime as dt
+import json
+from selenium import webdriver
+from selenium.webdriver.common.desired_capabilities import DesiredCapabilities
+import time
+import os
+import urllib.parse
+from selenium.webdriver.support.ui import WebDriverWait
+from selenium.webdriver.common.by import By
+from selenium.webdriver.support import expected_conditions as EC
+import codecs
+import random
+import requests
+import dataset
+import traceback
+import sys
+from selenium.webdriver.common.keys import Keys
+import timeit
+import socket
+
+db = dataset.connect('mysql://choozmo:pAssw0rd@db.ptt.cx:3306/seo?charset=utf8mb4')
+driver=None
+headers = {
+        "Authorization": "Bearer " + "t35vhZtWNgvDNWHc3DJh0OKll3mcB9GvC8K2EAkBug2",
+        "Content-Type": "application/x-www-form-urlencoded"
+}
+
+sleepoffset = 0
+
+def send_msg(kw):
+    params = {"message": "處理關鍵字: "+kw}  
+    r = requests.post("https://notify-api.line.me/api/notify",headers=headers, params=params)
+
+def empty_query(q):
+    global driver
+    googleurl='https://www.google.com/search?q='+urllib.parse.quote(q)
+    driver.get(googleurl)
+    time.sleep(3)
+
+def process_query(urllist, query, client):
+    sleepoffset = 0
+    global driver
+    driver.get('https://www.google.com?num=100')
+    time.sleep(3)
+    print(driver.current_url)
+
+    # elmts=driver.find_elements_by_xpath("//div[@class='yuRUbf']/a")a4bIc
+    # ABOVE METHOD IS DEPRECATED STARTING SELENIUM 4.3.0, USE THIS
+    #
+    try:
+        elmt = driver.find_element(By.XPATH, "//textarea[@name='q']")
+    except:
+        elmt = driver.find_element(By.XPATH, "//input[@name='q']")
+    time.sleep(1)
+
+    elmt.send_keys(query)
+    elmt.send_keys(Keys.ENTER)
+
+    idx=1
+    ranking=-1
+    domain_in_link = 0
+
+    googleurl = driver.current_url
+    print(driver.current_url)
+
+    if "sorry" in googleurl:
+        return 444
+
+    try: #in case there are duplicates...
+        clickmore=driver.find_element("xpath","//p[@id='ofr']").find_element(By.TAG_NAME, "a")
+        webdriver.ActionChains(driver).move_to_element(clickmore).perform()
+        webdriver.ActionChains(driver).move_to_element(clickmore).click().perform()
+    except:
+        pass
+    elmts=driver.find_elements("xpath","//div[@class='yuRUbf']/a")
+
+    print (len(elmts))
+    # driver.save_screenshot('c:/tmp/test.png')
+    n=0
+    clickcand=[]
+
+    for el in elmts:
+        n+=1
+        #txt=el.text
+        txt='aaaaaaaaaaa'
+        href=el.get_attribute('href')
+        if len(txt)>10:
+            for url in urllist:
+                if url in href:
+                    clickcand.append([el,n])
+                
+    if len(clickcand)!=0:
+        '''for e in clickcand:
+            href = e[0].get_attribute('href')
+            print(href)
+            print(e[0].text)
+            print("Rank: " + str(e[1]))
+            db['sns_log'].insert({"kw": query, "ranking": e[1], "url": href, "dt": dt.now(), "client": client, "title": e[0].text, "results": n})'''
+
+        e = random.choice(clickcand)  
+        el = e[0]
+        domain_in_link += 1
+        print('clicked....')
+        href = el.get_attribute('href')
+        print(href)
+        print(el.text)
+        
+        webdriver.ActionChains(driver).move_to_element(el).perform()
+        webdriver.ActionChains(driver).move_to_element(el).click().perform()
+        db['sns_log'].insert({"kw": query, "ranking": e[1], "url": href, "dt": dt.now(), "client": client, "title": el.text, "results": n})
+        duration = random.randint(40,60)
+        time.sleep(duration)
+
+        print(domain_in_link)
+        return 200
+
+    return 0 # if no articles found
+    
+    
+
+def run_once(url, query, client):
+    global driver
+    result=[]
+    options = webdriver.ChromeOptions()
+    options.add_argument('--headless')
+#    options.add_argument("--user-agent=" +user_agent)
+    options.add_argument("--incognito")
+    options.add_argument('--no-sandbox')
+    options.add_argument('--disable-dev-shm-usage')
+
+    driver = webdriver.Chrome(
+    options=options)
+
+    driver.delete_all_cookies()
+    driver.set_window_size(1400,1000)
+
+    statuscode = process_query(url, query, client)
+    driver.quit()
+
+    return statuscode
+
+#execution starts here
+
+def execute(url, query, client):
+    print("Ctrl+C or Ctrl+Z to stop.")
+    statuscode = 0
+    st = timeit.default_timer()
+    try:
+        statuscode = run_once(url, query, client)
+    except:
+        traceback.print_exc()
+    timetaken = timeit.default_timer()-st
+    print("Time taken: " + str(timetaken))
+    
+    print("Process returned with " + str(statuscode))
+    if statuscode == 444:
+        print("You have been caught!!!")
+        
+        #notify("Clickbot " + brands[domain] + " has been caught by Google and will terminate. IP: ")
+
+    extrasleep = 0
+    if(timetaken < 50):
+        extrasleep = 50 - timetaken
+    print("Ctrl+C or Ctrl+Z to stop now.")
+    print("You have " + str(10 + extrasleep) + " seconds.")
+    time.sleep(10 + extrasleep)
+    return statuscode

+ 50 - 0
website_clickjobs/n2nart/icons.py

@@ -0,0 +1,50 @@
+from _clickjob import *
+
+custlist = ["The Icons_EN", "The Icons_ZH"]
+
+db = dataset.connect('mysql://choozmo:pAssw0rd@db.ptt.cx:3306/seo?charset=utf8mb4')
+
+def reset(cust): #USING CUSTKW2 AND CUSTURL2 BECAUSE THE FIRST ONE IS MESSING UP. REVERT BACK LATER.
+    k=db.query('select * from seo.seo_nton_custkw2 where cust="' + cust + '" and disused=0')
+    u=db.query('select * from seo.seo_nton_custurl2 where cust="' + cust + '" and disused=0')
+    #TAG ABOVE AND UNTAG BELOW FOR DEBUG
+    #ds=hhhdb.query('select * from seo.seo_articles where cust=')
+    kwd=[]
+    urld=[]
+    for i in k:
+        kwd.append(i['kw'].replace('\xa0',' '))
+    for i in u:
+        urld.append(i['url'].replace('\xa0',' '))
+    random.shuffle(kwd)
+    random.shuffle(urld)
+    return [kwd,urld,c]
+
+runcount=0
+while True:
+    try:
+        data=[]
+        cust = custlist
+        print("Gathering data...")
+        for c in cust:
+            data.append(reset(c))
+        print('Data collected')
+        dataok = 1
+        print(len(data))
+    except:
+        dataok = 0
+        print("Error while collecting data.")
+    if dataok == 1:
+        for i in range(10):
+            print("Run " + str(runcount+1))
+            target = random.choice(data) # START HERE
+            print(target)
+            target_kw = random.choice(target[0])
+            print(target_kw)
+            statuscode = execute(target[1], target_kw, target[2]) # target[1] is URL list
+            if statuscode == 444:
+                print("Completed ", runcount, " times before being caught")
+                time.sleep(300)
+            else:
+                runcount+=1
+    else:
+        time.sleep(60)

+ 386 - 0
website_clickjobs/n2nart/list.txt

@@ -0,0 +1,386 @@
+http://finance.yahoo.com/news/strong-generation-revolution-starting-taiwan-102000191.html
+https://www.wytv.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://wymt.com/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://www.fox19.com/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://www.fox59.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://www.informnny.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://mysuncoast.com/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://wwnytv.com/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://www.wwlp.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://nbc12.com/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://fox8live.com/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://www.wvnstv.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://wvlt.tv/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://www.brproud.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://nbc29.com/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://www.mywabashvalley.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://wtvy.com/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://wtvm.com/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://13abc.com/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://www.cbs4indy.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://www.wtrf.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://wtok.com/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://wtoc.com/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://www.wtnh.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://www.news10.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://wtap.com/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://www.wtaj.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://www.localsyr.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://www.wspa.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://wsfa.com/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://wsaz.com/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://wsaw.com/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://www.wsav.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://www.rochesterfirst.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://www.wric.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://www.wreg.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://wrdw.com/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://www.wrbl.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://www.mystateline.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://www.wpri.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://www.pix11.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://www.phl17.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://wowt.com/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://www.wowktv.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+http://world-gen.com/prnewswire/?rkey=20230309HK35434&filter=3907
+https://www.woodtv.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://cleveland19.com/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://www.cenlanow.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://wndu.com/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://www.wnct.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://www.cbs17.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://pr.wncbusiness.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+https://nbc15.com/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://wmcactionnews5.com/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://wmbfnews.com/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://www.centralillinoisproud.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://www.mypanhandle.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://uppermichiganssource.com/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://wlox.com/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://www.wlns.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://wlbt.com/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://www.wiproud.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://wkyt.com/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://www.wkrn.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://www.wkrg.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://www.wkbn.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://www.qcnews.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://www.fox8.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://www.wjtv.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://www.upmatters.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://www.wjhl.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://wjhg.com/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://www.yourerie.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://www.wjbf.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://www.wivb.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://witn.com/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://wistv.com/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://smb.windsorweekly.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+http://www.winddaily.com/reports/prnewswire-winddaily-news.html?rkey=20230309HK35434&filter=1644
+https://smb.winchestersun.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+https://wilx.com/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://wifr.com/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://wibw.com/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://www.cbs42.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://www.abc27.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://whsv.com/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://www.who13.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://www.whnt.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://whatson.guide/onwire/?rkey=20230309HK35434&filter=23903
+https://www.wgno.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://www.wgntv.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://www.myfox8.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://www.wfxrtv.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://www.wearegreenbay.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://www.wfla.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://14news.com/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://www.mychamplainvalley.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://www.mytwintiers.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://pr.wvcjournal.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+https://pr.westjordanjournal.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+https://www.tristatehomepage.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://wect.com/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://weau.com/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://www.dcnewsnow.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://wdtv.com/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://www.wdtn.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://www.fox56news.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://www.wdhn.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://wdbj7.com/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://wdam.com/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://www.fox4kc.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://wctv.tv/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://live5news.com/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://www.nbc4i.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://wcjb.com/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://www.wcia.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://www.counton2.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://wcax.com/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://www.wbtw.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://wbtv.com/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://www.pahomepage.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://wbrc.com/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://www.wboy.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://wbko.com/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://www.binghamtonhomepage.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://wbay.com/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://www.wavy.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://wave3.com/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://www.wate.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://smb.thewashingtondailynews.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+https://pr.washingtoncitypaper.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+https://www.wane.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://pr.walnutcreekmagazine.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+https://walb.com/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://wagmtv.com/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://waff.com/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://wafb.com/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://wabi.tv/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://smb.valleytimes-news.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+https://www.userwalls.news/business-finance/strong-generation-revolution-starting-taiwan-spreads-world-6236192/
+https://usa-times.news/pr-newswire/?rkey=20230309HK35434&filter=24926
+https://ustimesmirror.com/pr-newswire/?rkey=20230309HK35434&filter=25063
+http://solardat.uoregon.edu/prnewswire.html?rkey=20230309HK35434&filter=2355
+https://www.tripcast360.com/global-entertainment/?rkey=20230309HK35434&filter=22579
+https://trendingbooks.org/pr-newswire/?rkey=20230309HK35434&filter=24897
+https://www.tmcnet.com/usubmit/2023/03/09/9774011.htm
+https://pr.timesofsandiego.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+https://timebulletin.us/pr-newswire/?rkey=20230309HK35434&filter=25020
+https://chiaratoyebi.com/pr-newswire/?rkey=20230309HK35434&filter=24137
+https://smb.thewetumpkaherald.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+https://smb.vicksburgpost.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+https://smb.tryondailybulletin.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+https://smb.troymessenger.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+https://smb.thetidewaternews.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+https://smb.tallasseetribune.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+https://smb.suffolknewsherald.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+https://smb.state-journal.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+https://smb.thesnaponline.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+https://smb.selmatimesjournal.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+https://smb.roanoke-chowannewsherald.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+https://smb.thepostsearchlight.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+https://smb.panolian.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+https://smb.oxfordeagle.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+http://theleadstory.org/prnewswire/?rkey=20230309HK35434&filter=5706
+https://smb.theinteriorjournal.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+https://smb.greenvilleadvocate.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+https://smb.farmvilleherald.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+https://smb.demopolistimes.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+https://smb.thecoastlandtimes.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+https://smb.clemmonscourier.net/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+https://smb.clantonadvertiser.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+https://smb.thecharlottegazette.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+https://www.cameronjournal.com/latest-books-and-magazines-news/?rkey=20230309HK35434&filter=25234
+https://smb.brewtonstandard.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+https://smb.bogalusadailynews.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+https://smb.atmoreadvance.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+https://smb.andalusiastarnews.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+https://smb.amnews.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+https://www.terradaily.com/reports/prnewswire-environment-news.html?rkey=20230309HK35434&filter=1643
+https://pr.taylorsvillecityjournal.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+https://surveyguidebook.com/prnewswire.asp?rkey=20230309HK35434&filter=24357
+https://pr.mysugarhousejournal.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+https://pr.stylemg.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+http://www.stateofdigitalpublishing.com/pr-newswire/?rkey=20230309HK35434&filter=8209
+http://www.spoke.com/press_releases/6409bd27fc12b05fed00f6ee
+https://www.spacedaily.com/reports/prnewswire-space-news.html?rkey=20230309HK35434&filter=1639
+https://smb.southwestdailynews.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+https://pr.rivertonjournal.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+https://pr.southjordanjournal.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+https://www.solardaily.com/reports/prnewswire-solardaily-news.html?rkey=20230309HK35434&filter=1634
+https://solarbusinesshub.com/latest-solar-industry-press-releases/?rkey=20230309HK35434&filter=2814
+https://society-mag.com/pr-newswire/?rkey=20230309HK35434&filter=25116
+https://smb.smithfieldtimes.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+https://smb.shelbycountyreporter.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+https://en.sangritimes.com/prnewswire?rkey=20230309HK35434&filter=21009
+https://pr.sandyjournal.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+http://media.newswire.ca/sjvcleanenergy.html?rkey=20230309HK35434&filter=15449
+https://smb.salisburypost.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+https://www.runthemoney.com/news?rkey=20230309HK35434&filter=21853
+https://www.ourquadcities.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://smb.prentissheadlight.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+https://www.prnewswire.com/news-releases/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world-301767794.html
+https://smb.panews.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+https://smb.picayuneitem.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+https://smb.orangeleader.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+http://www.onenewspage.com/prnewswire.php?rkey=20230309HK35434&filter=3968
+https://pr.omahamagazine.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+http://www.oilgasdaily.com/reports/prnewswire-oilgasdaily-news.html?rkey=20230309HK35434&filter=1627
+https://pr.norwoodtownnews.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+https://pr.norfolkwrenthamnews.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+https://ninjacreditconsultants.com/prnewswire?rkey=20230309HK35434&filter=24960
+http://nrcbooks.blogspot.com/p/blog-page_8.html?rkey=20230309HK35434&filter=1301
+https://www.nextwavegroup.com/news?rkey=20230309HK35434&filter=11189
+https://newsblaze.com/pr-newswire/?rkey=20230309HK35434&filter=12684
+https://pr.naticktownnews.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+https://smb.natchezdemocrat.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+https://www.myhighplains.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+http://mysillylittlegang.com/prnewswire/?rkey=20230309HK35434&filter=951
+https://pr.murrayjournal.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+https://www.morningstar.com/news/pr-newswire/20230309hk35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+http://momblogsociety.com/press-room/?rkey=20230309HK35434&filter=551
+https://pr.millcreekjournal.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+https://pr.midvalejournal.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+https://smb.middlesboronews.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+http://www.mases.org/Industry-News?rkey=20230309HK35434&filter=13971
+https://microgridnews.com/renewable-industry-news?rkey=20230309HK35434&filter=16141
+http://www.merrilledge.com/research/story?strykey=2508-202303090520pr_news_uspr_____hk35434-1
+https://pr.millismedwaynews.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+https://pr.thembnews.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+https://www.marketwatch.com/press-release/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world-2023-03-09?mod=search_headline
+https://www.marketwatch.com/press-release/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world-2023-03-09?mod=search_headline
+https://markets.businessinsider.com/news/stocks/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world-1032156194
+http://manhattanweek.com/?page_id=1478&rkey=20230309HK35434&filter=4113
+http://www.mainesolar.org/prnews.html?rkey=20230309HK35434&filter=2304
+https://mahalsa.us/pr-newswire/?rkey=20230309HK35434&filter=25071
+https://smb.magnoliastatelive.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+http://maadvisor.com/themaadvisor/prnewswire.html?rkey=20230309HK35434&filter=242
+https://smb.luvernejournal.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+https://smb.lowndessignal.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+https://smb.theleesvilleleader.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+https://smb.leaderpub.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+https://latinbusinesstoday.com/pr-newswire/?rkey=20230309HK35434&filter=11813
+https://smb.lagrangenews.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+https://smb.lobservateur.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+https://kyoutv.com/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://ky3.com/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://www.fox21news.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://www.kxnet.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://kxii.com/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://www.kxan.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://kwtx.com/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://kwqc.com/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://www.fox44news.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://kwch.com/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://valleynewslive.com/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://www.valleycentral.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://www.fox40.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://www.abc4.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://www.fox2now.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://webcenterfairbanks.com/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://alaskasnewssource.com/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://www.ktsm.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://ktre.com/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://www.ktla.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://www.ktalnews.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://www.bigcountryhomepage.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://kswo.com/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://www.fox5sandiego.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://www.ksn.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://www.ksnt.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://www.fourstateshomepage.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://ksnblocal4.com/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://ksla.com/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://dakotanewsnow.com/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://www.yourcentralvalley.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://www.krqe.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://www.kron4.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://www.westernslopenow.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://kplctv.com/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://kotatv.com/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://cbs7.com/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://www.ozarksfirst.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://kolotv.com/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://1011now.com/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://kold.com/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://www.koin.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://www.nwahomepage.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://knopnews2.com/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://knoe.com/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://nbcnebraskascottsbluff.com/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://kmvt.com/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://www.yourbasin.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://kltv.com/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://www.conchovalleyhomepage.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://www.fox16.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://www.klfy.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://www.8newsnow.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://kktv.com/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://nbc11news.com/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://kjct8.com/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://www.cw39.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://www.khon2.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://hawaiinewsnow.com/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://www.yourbigsky.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://wyomingnewsnow.tv/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://kgns.tv/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://www.kget.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://kfyrtv.com/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://kfvs12.com/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://www.kfor.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://www.texomashomepage.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://newschannel10.com/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://keyc.com/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://blackhillsfox.com/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://www.ketk.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://smb.kenbridgevictoriadispatch.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+https://www.keloland.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://www.kdvr.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://www.cw33.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://kcrg.com/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://kcbd.com/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://www.siouxlandproud.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://kbtx.com/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://www.kasibroadcasting.com/pr-news-wire/?rkey=20230309HK35434&filter=25330
+https://www.kark.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://www.myarklamiss.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://www.everythinglubbock.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://kalb.com/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://kait8.com/prnewswire/2023/03/09/strong-generation-new-revolution-starting-taiwan-spreads-world/
+https://kpratchermedia.com/pr-newswire/?rkey=20230309HK35434&filter=24051
+https://smb.jessaminejournal.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+https://smb.irontontribune.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+https://ises.org/news/solar-industry-news/?rkey=20230309HK35434&filter=5477
+https://industry-news.biz/pr-newswire/?rkey=20230309HK35434&filter=25107
+https://illinoissolar.org/solarenergynews/?rkey=20230309HK35434&filter=2384
+http://nashville.iabc.com/newsfeed/?rkey=20230309HK35434&filter=18774
+https://hubandcompany.com/industry-news?rkey=20230309HK35434&filter=24314
+https://pr.hopedaletownnews.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+https://pr.hollistontownnews.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+https://pr.holladayjournal.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+https://pr.herrimanjournal.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+https://pr.hattiesburg.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+http://guntherportfolio.com/prnewswire/?rkey=20230309HK35434&filter=2383
+https://www.gsreia.org/news-wire/?rkey=20230309HK35434&filter=14359
+http://pr.gritdaily.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+https://pr.greenvillebusinessmag.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+https://gatewaystoart.com/pr-newswire/?rkey=20230309HK35434&filter=24978
+https://smb.gatescountyindex.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+https://pr.franklintownnews.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+https://www.flaseia.org/pr-newswire-solar-industry-news/?rkey=20230309HK35434&filter=2291
+https://www.finanzen.net/nachricht/aktien/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world-12241507
+https://energytrends.news/pr-newswire/?rkey=20230309HK35434&filter=24941
+http://www.energy-daily.com/reports/prnewswire-energy-daily-news.html?rkey=20230309HK35434&filter=1615
+https://smb.elizabethton.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+https://pr.draperjournal.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+https://dividenddetective.com/prnews.htm?rkey=20230309HK35434&filter=12395
+https://pr.davisjournal.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+https://smb.ourdavie.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+https://smb.dailyleader.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+https://pr.cottonwoodheightsjournal.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+https://smb.cordeledispatch.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+https://pr.columbiabusinessmonthly.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+https://www.cnyhomepage.com/business/press-releases/cision/20230309HK35434/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://smb.claiborneprogress.net/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+https://pr.valleyjournals.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+https://go.chinesewire.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+https://pr.chestercounty.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+http://www.businesstrainingmedia.com/hremployeenewsletter.php?rkey=20230309HK35434&filter=311
+https://pr.bradfordvillebugle.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+https://pr.boreal.org/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+https://smb.bluegrasslive.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+http://www.biofueldaily.com/reports/prnewswire-biofueldaily-news.html?rkey=20230309HK35434&filter=1611
+http://www.benzinga.com/pressreleases/23/03/n31272008/the-strong-generation-a-new-revolution-starting-from-taiwan-spreads-to-the-world
+https://bambuup.com/news-by-prnewswire?rkey=20230309HK35434&filter=23620
+https://www.automoblog.net/industry-news?rkey=20230309HK35434&filter=17439
+https://smb.austindailyherald.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+https://pr.ashlandtownnews.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+http://apnews.com/press-release/pr%20newswire/pr%20newswire-business-8257df03966a09ec27080aee39ac7ded
+https://smb.americustimesrecorder.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+https://americantalk.live/pr-newswire/?rkey=20230309HK35434&filter=25030
+https://smb.americanpress.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+https://alphaflash.com/news-wires/?rkey=20230309HK35434&filter=23258
+http://www.allstocks.com/html/pr_news.html?rkey=20230309HK35434&filter=12447
+https://smb.alexcityoutlook.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+https://smb.albertleatribune.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce
+https://smb.alabamanow.com/article/The-Strong-Generation-A-New-Revolution-Starting-from-Taiwan-Spreads-to-the-World?storyId=6409b36bd6354ea6eb7d6fce

+ 14 - 0
website_clickjobs/n2nart/update_kw.py

@@ -0,0 +1,14 @@
+import dataset
+
+db = dataset.connect('mysql://choozmo:pAssw0rd@db.ptt.cx:3306/seo?charset=utf8mb4')
+table=db['seo_nton_custkw']
+
+cust = "The Icons_ZH"
+kw = ['壯世代之春','壯世代','高齡解放','高齡解放運動','高齡化','少子化','戰國策 吳春城','戰國策 董事長','Strong Generation','政府社會責任']
+
+print(cust, kw)
+for k in kw:
+    if k != "" and cust != "":
+        table.insert({'cust':cust,'kw':k})
+    else:
+        print("Empty data")

+ 14 - 0
website_clickjobs/n2nart/update_url.py

@@ -0,0 +1,14 @@
+import dataset
+
+db = dataset.connect('mysql://choozmo:pAssw0rd@db.ptt.cx:3306/seo?charset=utf8mb4')
+table=db['seo_nton_custurl']
+
+cust = "The Icons_ZH"
+url = ['https://www.setn.com/News.aspx?NewsID=1262828','https://news.tvbs.com.tw/health/2063873','https://money.udn.com/money/story/5635/7022520','https://tw.news.yahoo.com/%E6%AD%A3%E8%A6%96%E5%85%A8%E7%90%83%E9%AB%98%E9%BD%A1%E5%8C%96-%E5%AD%B8%E8%80%85%E5%96%8A-%E5%A3%AF%E4%B8%96%E4%BB%A3%E4%B9%8B%E6%98%A5-%E7%9A%84%E9%9D%A9%E5%91%BD-151459023.html','https://today.line.me/tw/v2/article/9mrVkax','https://today.line.me/tw/v2/article/oqNwkkW','https://m.life.tw/?app=view&no=1898066','https://times.hinet.net/news/24445618','https://n.yam.com/Article/20230310482125','https://www.owlting.com/news/articles/300146','https://www.watchmedia01.com/athematic-20230311045214.html','https://tw.nextapple.com/press/20230310/4908DCC46C0773A50372CAD6B3B8CF89?referralCode=5b50fa2f','https://www.windtalk.com.tw/article/detail?id=624','https://www.tnews.tw/article/detail?id=610']
+
+#print(cust, url)
+for u in url:
+    if u != "" and cust != "":
+        table.insert({'cust':cust,'url':u})
+    else:
+        print("Empty data")

+ 14 - 0
website_clickjobs/n2nart/update_urllist.py

@@ -0,0 +1,14 @@
+import dataset
+
+db = dataset.connect('mysql://choozmo:pAssw0rd@db.ptt.cx:3306/seo?charset=utf8mb4')
+table=db['seo_nton_custurl']
+
+cust = "The Icons_EN"
+
+with open("list.txt", "r") as file:
+    for line in file:
+        if line != "":
+            url = line.replace('\n', '')
+            table.insert({'cust':cust,'url':url})
+    else:
+        print("Empty data")

+ 18 - 12
website_clickjobs/type-1/_clickjob0113.py

@@ -38,7 +38,7 @@ def empty_query(q):
     driver.get(googleurl)
     time.sleep(3)
 
-def process_query(domain, target_id, brands, query):
+def process_query(domain, target_id, url, query):
     print(target_id)
     sleepoffset = 0
     global driver
@@ -53,7 +53,10 @@ def process_query(domain, target_id, brands, query):
         # elmts=driver.find_elements_by_xpath("//div[@class='yuRUbf']/a")
         # ABOVE METHOD IS DEPRECATED STARTING SELENIUM 4.3.0, USE THIS
         #
-        elmt = driver.find_element(By.XPATH, "//input[@name='q']")
+        try:
+            elmt = driver.find_element(By.XPATH, "//textarea[@name='q']")
+        except:
+            elmt = driver.find_element(By.XPATH, "//input[@name='q']")
         time.sleep(1)
 
         elmt.send_keys(query)
@@ -78,16 +81,19 @@ def process_query(domain, target_id, brands, query):
     elmts=driver.find_elements("xpath","//div[@class='yuRUbf']/a")
 
     targets=[]
-    targets.append("https://hhh.com.tw/HHH_NEW/designers/index_designerList.php?cid=" + target_id)
-    targets.append("https://m.hhh.com.tw/HHH_NEW/designers/index_designerList.php?cid=" + target_id)
-    targets.append("https://hhh.com.tw/HHH_NEW/designers_static/" + target_id + ".html")
-    targets.append("https://m.hhh.com.tw/HHH_NEW/designers_static/" + target_id + ".html")
-    targets.append("https://hhh.com.tw/designer-about.php?designer_id=" + target_id + ".html")
-    targets.append("https://m.hhh.com.tw/designer-about.php?designer_id=" + target_id + ".html")
-    
-    targets.append("https://www.hhh.com.tw/HHH_NEW/designers/index_designerList.php?cid=" + target_id)
-    targets.append("https://www.hhh.com.tw/HHH_NEW/designers_static/" + target_id + ".html")
-    targets.append("https://www.hhh.com.tw/designer-about.php?designer_id=" + target_id + ".html")
+    if int(target_id) > 50000: #50XXX = FAQ
+        targets.append(url)
+    else:
+        targets.append("https://hhh.com.tw/HHH_NEW/designers/index_designerList.php?cid=" + target_id)
+        targets.append("https://m.hhh.com.tw/HHH_NEW/designers/index_designerList.php?cid=" + target_id)
+        targets.append("https://hhh.com.tw/HHH_NEW/designers_static/" + target_id + ".html")
+        targets.append("https://m.hhh.com.tw/HHH_NEW/designers_static/" + target_id + ".html")
+        targets.append("https://hhh.com.tw/designer-about.php?designer_id=" + target_id + ".html")
+        targets.append("https://m.hhh.com.tw/designer-about.php?designer_id=" + target_id + ".html")
+        
+        targets.append("https://www.hhh.com.tw/HHH_NEW/designers/index_designerList.php?cid=" + target_id)
+        targets.append("https://www.hhh.com.tw/HHH_NEW/designers_static/" + target_id + ".html")
+        targets.append("https://www.hhh.com.tw/designer-about.php?designer_id=" + target_id + ".html")
     
     print (len(elmts))
     # driver.save_screenshot('c:/tmp/test.png')

+ 5 - 4
website_clickjobs/type-1/hhh_r3.py

@@ -5,17 +5,17 @@ hhhdb = dataset.connect('mysql://choozmo:pAssw0rd@db.ptt.cx:3306/seo?charset=utf
 def reset():
     ds=hhhdb.query('select * from hhh.hhh_designer_for_crawl')
     #TAG ABOVE AND UNTAG BELOW FOR DEBUG
-    #ds=hhhdb.query('select * from hhh.hhh_designer_for_crawl where hdesigner_id=XXX')
+    #ds=hhhdb.query('select * from hhh.hhh_designer_for_crawl where hdesigner_id=')
     data=[]
     for i in ds:
         for j in range(i['weight']):
-            data.append([i['hdesigner_id'],i['title'].replace('\xa0',' ')])
+            data.append([i['hdesigner_id'],i['title'].replace('\xa0',' '),i['url']])
     random.shuffle(data)
     return data
 
 domain = 'hhh.com.tw'
 #target_domain = get_xml_data(sourceurls)
-brands={domain:'hhh'}
+brands={domain:'hhh'} # UNUSED
 #query_list = ['幸福空間']
 
 #data = getdata()
@@ -36,9 +36,10 @@ while True:
             target = random.choice(data) # START HERE
             target_id = str(target[0])
             target_name = target[1]
+            target_url = target[2]
             print(target_id)
             print(target_name)
-            statuscode = execute(domain, target_id, brands, target_name)
+            statuscode = execute(domain, target_id, target_url, target_name)
             if statuscode == 444:
                 print("Completed ", runcount, " times before being caught")
                 time.sleep(300)

+ 8 - 0
website_clickjobs/type-1/yoursnet.py

@@ -0,0 +1,8 @@
+from _clickjob import *
+
+domain = 'yours.net.tw'
+target_domain = ['yours.net.tw']
+brands={domain:'yours.net.tw'}
+query_list = ('顧問 服務','citd計畫','研發補助','sbir過件','政府補助資源','SBIR','國際市場開發','投資抵減','研發 投 抵','中小 製造 業 接班 傳承 數位 轉型','經濟部計畫','工業局 補助計畫','工業局 產創平台','研發 投資抵減','sbir 是 什麼','接班傳承數位轉型','智慧製造','二代接班','數位補助','A+補助','海外行銷補助','行銷補助','補助業界開發國際市場','產業升級轉型補助','中小企業補助')
+
+execute(domain, target_domain, brands, query_list)

+ 5 - 0
website_clickjobs/type-2/tcd.py

@@ -0,0 +1,5 @@
+from _clickjob import *
+
+target = 'https://www.tcdream.taichung.gov.tw/'
+
+execute(target)

+ 8 - 0
website_clickjobs/type-FD/tcd.py

@@ -0,0 +1,8 @@
+from _clickjob import *
+
+domain = 'https://www.tcdream.taichung.gov.tw/'
+target_domain = ['taichung.gov.tw']
+brands={domain:'台中市政府'}
+query_list = ('台中市政府')
+
+execute(domain, target_domain, brands, query_list)

+ 194 - 0
website_clickjobs/type-GD/_clickjob.py

@@ -0,0 +1,194 @@
+import time
+from datetime import datetime
+import json
+from selenium import webdriver
+from selenium.webdriver.common.desired_capabilities import DesiredCapabilities
+import time
+import os
+import urllib.parse
+from selenium.webdriver.support.ui import WebDriverWait
+from selenium.webdriver.common.by import By
+from selenium.webdriver.support import expected_conditions as EC
+import codecs
+import random
+import requests
+import dataset
+import traceback
+import sys
+from selenium.webdriver.common.keys import Keys
+import timeit
+import socket
+
+db = dataset.connect('mysql://choozmo:pAssw0rd@db.ptt.cx:3306/seo?charset=utf8mb4')
+driver=None
+headers = {
+        "Authorization": "Bearer " + "t35vhZtWNgvDNWHc3DJh0OKll3mcB9GvC8K2EAkBug2",
+        "Content-Type": "application/x-www-form-urlencoded"
+}
+
+sleepoffset = 0
+
+def send_msg(kw):
+    params = {"message": "處理關鍵字: "+kw}  
+    r = requests.post("https://notify-api.line.me/api/notify",headers=headers, params=params)
+
+def empty_query(q):
+    global driver
+    googleurl='https://www.google.com/search?q='+urllib.parse.quote(q)
+    driver.get(googleurl)
+    time.sleep(3)
+
+def process_query(url, cust, query):
+    sleepoffset = 0
+    global driver
+    driver.get('https://www.google.com?num=100')
+    time.sleep(3)
+    print(driver.current_url)
+
+    # elmts=driver.find_elements_by_xpath("//div[@class='yuRUbf']/a")
+    # ABOVE METHOD IS DEPRECATED STARTING SELENIUM 4.3.0, USE THIS
+    #
+    try:
+        elmt = driver.find_element(By.XPATH, "//textarea[@name='q']")
+    except:
+        elmt = driver.find_element(By.XPATH, "//input[@name='q']")
+    time.sleep(1)
+
+    elmt.send_keys(query)
+    elmt.send_keys(Keys.ENTER)
+
+    idx=1
+    ranking=-1
+    domain_in_link = 0
+
+    googleurl = driver.current_url
+    print(driver.current_url)
+
+    if "sorry" in googleurl:
+        return 444
+
+    try: #in case there are duplicates...
+        clickmore=driver.find_element("xpath","//p[@id='ofr']").find_element(By.TAG_NAME, "a")
+        webdriver.ActionChains(driver).move_to_element(clickmore).perform()
+        webdriver.ActionChains(driver).move_to_element(clickmore).click().perform()
+    except:
+        pass
+    elmts=driver.find_elements("xpath","//div[@class='yuRUbf']/a")
+
+    print (len(elmts))
+    # driver.save_screenshot('c:/tmp/test.png')
+    n=0
+    for el in elmts:
+        n+=1
+        href=el.get_attribute('href')
+        txt=el.text
+        if len(txt)>10:
+            if url in href:
+                domain_in_link += 1
+                print('clicked....')
+                print(href)
+                print(txt)
+                
+                webdriver.ActionChains(driver).move_to_element(el).perform()
+                webdriver.ActionChains(driver).move_to_element(el).click().perform()
+                print("Rank: " + str(n))
+                time_stamp = datetime.fromtimestamp(time.time())
+                time_stamp = time_stamp.strftime("%Y-%m-%d %H:%M:%S")
+                db['general_log'].insert({"time_stamp": time_stamp, "query": query, "url": href, "content": txt, "client": cust, "ranking": str(n)})
+                duration = random.randint(40,60)
+                time.sleep(duration)
+
+                print(domain_in_link)
+                return 200
+    
+    
+
+def run_once(url, cust, query):
+    global driver
+    result=[]
+    options = webdriver.ChromeOptions()
+    options.add_argument('--headless')
+#    options.add_argument("--user-agent=" +user_agent)
+    options.add_argument("--incognito")
+    options.add_argument('--no-sandbox')
+    options.add_argument('--disable-dev-shm-usage')
+
+    driver = webdriver.Chrome(
+    options=options)
+
+    driver.delete_all_cookies()
+    driver.set_window_size(1400,1000)
+
+    statuscode = process_query(url, cust, query)
+    driver.quit()
+
+    return statuscode
+
+#execution starts here
+
+def execute(url, cust, query):
+    print("Ctrl+C or Ctrl+Z to stop.")
+    statuscode = 0
+    st = timeit.default_timer()
+    try:
+        statuscode = run_once(url, cust, query)
+    except:
+        traceback.print_exc()
+    timetaken = timeit.default_timer()-st
+    print("Time taken: " + str(timetaken))
+    
+    print("Process returned with " + str(statuscode))
+    if statuscode == 444:
+        print("You have been caught!!!")
+        
+        #notify("Clickbot " + brands[domain] + " has been caught by Google and will terminate. IP: ")
+
+    extrasleep = 0
+    if(timetaken < 50):
+        extrasleep = 50 - timetaken
+    print("Ctrl+C or Ctrl+Z to stop now.")
+    print("You have " + str(10 + extrasleep) + " seconds.")
+    time.sleep(10 + extrasleep)
+    return statuscode
+
+def reset(client):
+    ds=db.query('select * from seo.seo_articles where cust="' + client + '"')
+    #TAG ABOVE AND UNTAG BELOW FOR DEBUG
+    #ds=hhhdb.query('select * from seo.seo_articles where cust=')
+    data=[]
+    for i in ds:
+        if i['weight']!=0:
+            for j in range(i['weight']):
+                data.append([i['kw'].replace('\xa0',' '),i['cust'].replace('\xa0',' '),i['url']])
+    random.shuffle(data)
+    return data
+
+def run(client):
+    runcount=0
+    while True:
+        try:
+            print("Gathering data...")
+            data = reset(client)
+            print('Data collected')
+            dataok = 1
+        except:
+            dataok = 0
+            print("Error while collecting data.")
+        if dataok == 1:
+            for i in range(10):
+                print("Run " + str(runcount+1))
+                target = random.choice(data) # START HERE
+                target_kw = target[0]
+                cust = target[1]
+                target_url = target[2]
+                print(target_kw)
+                print(cust)
+                print(target_url)
+                statuscode = execute(target_url, cust, target_kw)
+                if statuscode == 444:
+                    print("Completed ", runcount, " times before being caught")
+                    time.sleep(300)
+                else:
+                    runcount+=1
+        else:
+            time.sleep(60)

+ 6 - 0
website_clickjobs/type-GD/icons.py

@@ -0,0 +1,6 @@
+from _clickjob import *
+
+db = dataset.connect('mysql://choozmo:pAssw0rd@db.ptt.cx:3306/seo?charset=utf8mb4')
+client = 'The Icons'
+
+run(client)

+ 6 - 0
website_clickjobs/type-GD/kiesthee.py

@@ -0,0 +1,6 @@
+from _clickjob import *
+
+db = dataset.connect('mysql://choozmo:pAssw0rd@db.ptt.cx:3306/seo?charset=utf8mb4')
+client = '老茶滴雞精'
+
+run(client)

+ 25 - 0
website_clickjobs/type-GD/update.py

@@ -0,0 +1,25 @@
+import dataset
+import os
+import json
+
+db = dataset.connect('mysql://choozmo:pAssw0rd@db.ptt.cx:3306/seo?charset=utf8mb4')
+table=db['seo_articles']
+
+kwlist = ['精品茶葉','廖媽媽','老茶','滴雞精禮盒','滴雞精粉','土雞 滴雞精','茶罐','沖 泡 式 雞精','沖泡 雞精','滴雞精精華','滴雞精差別','雞精口感差別','濃縮 滴雞精','滴雞精 製程','雞精 製程','雞精伴手禮推薦','養顏精華飲','滴雞精 母親節','母親節優惠','母親節 茶 禮盒','母親節 禮物','滴 雞精']
+urllist = ['https://www.kies-thee.com/zh-TW/collections/kies-thee-%E8%8C%B6%E8%91%89%E5%95%86%E5%93%81','https://www.kies-thee.com/zh-TW/collections/%E5%85%83%E5%9C%92%E5%BB%96%E5%AA%BD%E5%AA%BD','https://www.kies-thee.com/zh-TW/collections/%E5%85%83%E5%9C%92%E5%BB%96%E5%AA%BD%E5%AA%BD','https://www.kies-thee.com/zh-TW/collections/%E5%85%83%E5%9C%92%E5%BB%96%E5%AA%BD%E5%AA%BD','https://www.kies-thee.com/zh-TW/blogs/%E7%9F%A5%E8%AD%98%E5%B0%88%E6%AC%84/120092','https://www.kies-thee.com/zh-TW/products/four-packs-20210525195733','https://www.kies-thee.com/zh-TW/products/bd008','https://www.kies-thee.com/zh-TW/products/four-packs-20210525195733','https://www.kies-thee.com/zh-TW/products/bf001-1','https://www.kies-thee.com/zh-TW/collections/%E9%9B%99%E6%95%88%E7%B2%BE%E8%8F%AF%E6%BB%B4%E9%9B%9E%E7%B2%BE%E9%A3%B2','https://www.kies-thee.com/zh-TW/blogs/%E7%9F%A5%E8%AD%98%E5%B0%88%E6%AC%84/120092','https://www.kies-thee.com/zh-TW/blogs/%E7%9F%A5%E8%AD%98%E5%B0%88%E6%AC%84/120092','https://www.kies-thee.com/zh-TW/blogs/%E7%9F%A5%E8%AD%98%E5%B0%88%E6%AC%84/120092','https://www.kies-thee.com/zh-TW/blogs/%E7%9F%A5%E8%AD%98%E5%B0%88%E6%AC%84/120092','https://www.kies-thee.com/zh-TW/blogs/%E7%9F%A5%E8%AD%98%E5%B0%88%E6%AC%84/120092','https://www.kies-thee.com/zh-TW/products/%E8%80%81%E8%8C%B6%E6%BB%B4%E9%9B%9E%E7%B2%BE%E7%B8%BD%E8%A3%81%E4%BC%B4%E6%89%8B%E7%A6%AE-20210525195129','https://www.kies-thee.com/zh-TW/products/bf001-1','https://www.kies-thee.com/collections/%E6%AF%8D%E8%A6%AA%E7%AF%80%E5%84%AA%E6%83%A0','https://www.kies-thee.com/collections/%E6%AF%8D%E8%A6%AA%E7%AF%80%E5%84%AA%E6%83%A0','https://www.kies-thee.com/zh-TW/','https://www.kies-thee.com/zh-TW/','https://www.kies-thee.com/zh-TW/']
+
+print(len(kwlist),len(urllist))
+if len(kwlist)-len(urllist) != 0:
+    print("Error")
+else:
+    for k, u in zip(kwlist, urllist):
+            kw = k
+            cust = "老茶滴雞精"
+            url = u
+            weight = 1
+
+            print(kw,cust,url)
+            if kw != "" and cust != "" and url != "":
+                table.insert({'kw':kw,'cust':cust,'url':url,'weight':weight})
+            else:
+                print("Empty data")

+ 6 - 0
website_clickjobs/type-GD/yours.py

@@ -0,0 +1,6 @@
+from _clickjob import *
+
+db = dataset.connect('mysql://choozmo:pAssw0rd@db.ptt.cx:3306/seo?charset=utf8mb4')
+client = '優思整合顧問'
+
+run(client)

+ 93 - 0
website_clickjobs/type-R/_clickjob.py

@@ -0,0 +1,93 @@
+from selenium import webdriver
+import time
+import os
+import random
+from userAgentRandomizer import userAgents
+from selenium.webdriver.common.by import By
+
+driver=None
+
+def re_get_webdriver():
+    global driver
+    result=[]
+    if driver is not None:
+        driver.quit()
+       # os.system('killall chrome')
+        print('Driver Closed')
+        driver=None
+    try:
+        ua = userAgents()
+
+        user_agent = ua.random()        
+
+        options = webdriver.ChromeOptions()
+
+
+        mobile_emulation = {
+            "deviceMetrics": { "width": 360, "height": 640, "pixelRatio": 3.0 },
+            "userAgent": "Mozilla/5.0 (Linux; Android 4.2.1; en-us; Nexus 5 Build/JOP40D) AppleWebKit/535.19 (KHTML, like Gecko) Chrome/18.0.1025.166 Mobile Safari/535.19" }
+        options.add_experimental_option("mobileEmulation", mobile_emulation)
+
+        options.add_argument("--no-sandbox")
+        options.add_argument("--disable-dev-shm-usage")
+        options.add_argument("--headless")
+
+#        print(user_agent)
+#        options.add_argument("--user-agent=" +user_agent)
+        options.add_argument("--incognito")
+        driver=None
+        try:
+            driver = webdriver.Chrome(options=options)
+        except:
+            if driver is not None:
+                driver.quit()
+#            driver.quit()
+#            os.system('pkill -f ')
+            print('kill %d'%os.getpid())
+            driver = None
+            #os.system('killall chrome')
+            #os.system('kill %d' % os.getpid())
+            
+            #sys.exit()
+            return
+#        driver.set_window_size(1400,1000)
+        return
+    except:
+        import traceback
+        traceback.print_exc()
+        driver=None
+        return None
+
+def run_once(url):
+    global driver
+    i=random.randint(0,7)
+    if i==0 or driver is None:
+        time.sleep(8)
+        re_get_webdriver()
+    if driver is None:
+        return
+    try:
+        
+        #time.sleep(0.5)
+        driver.execute_script('window.open("'+url+'","_blank");')
+        driver.execute_script("window.scrollTo(0, window.scrollY + 400)")
+        time.sleep(2.222)
+        print(url)
+        #driver.quit()
+    except Exception as e:
+
+        print('exception:',e)
+
+def resetlst(link):
+    try:
+        if driver is None:
+            re_get_webdriver()
+
+        driver.get(link)
+        urls = driver.find_elements(By.TAG_NAME,"a")
+        urls = list(filter(lambda url: link in url and ".doc" not in url and ".pdf" not in url and ".odt" not in url and ".docx" not in url, [u.get_attribute('href') for u in urls]))
+        for i in range(0,int(len(urls)/5)):
+            urls.append(link)
+        return urls
+    except:
+        return

+ 25 - 0
website_clickjobs/type-R/tcd.py

@@ -0,0 +1,25 @@
+from _clickjob import *
+
+lst=[]
+link='https://www.tcdream.taichung.gov.tw/'
+
+#db = dataset.connect('DATABASE LINK HERE')
+
+lst=resetlst(link)
+
+while True:
+    try:
+        l=random.choice(lst)
+       # print(l)
+        run_once(l)
+        
+        x=random.randint(0,500)
+        y=random.randint(0,2)
+        if x==y:
+            l=resetlst(link)
+            if len(l)!=0:
+                lst=l
+    except:
+        import time
+        time.sleep(5)
+        print('ERROR')

+ 4 - 4
website_clickjobs/type-V/c1.py

@@ -6,16 +6,16 @@ def pickvideo():
     n = random.randint(0,3)
     if n==0:
         term = "信義房屋"
-        whitelist = ['https://hr.sinyi.com.tw/','https://www.youtube.com/channel/UCU76s7FGtDvDta2mf2Zdn4Q','https://csr.sinyi.com.tw/client/innovation.php','https://events.sinyi.com.tw/20190828_webintro/','https://www.sinyi.com.tw/aboutsinyi/aboutsinyi_publish','https://www.youtube.com/watch?v=TwZwAAqkX_k','https://www.sinyinews.com.tw/dailynews/newsct/10089','https://money.udn.com/money/story/12276/6669984','https://www.youtube.com/watch?v=1OxZNuwlUOk','https://www.youtube.com/watch?v=tbdpEt65LRI','https://hr.sinyi.com.tw/events/tvc/','https://hr.sinyi.com.tw/events/1/?utm_source=Facebook_hr&utm_medium=display&utm_term=web&utm_content=video','https://www.youtube.com/watch?v=3besPfdWyW0','https://www.youtube.com/watch?v=ZxeBZggs_-s','https://www.youtube.com/watch?v=uOsZiIhyxVM']
+        whitelist = ['https://hr.sinyi.com.tw/','https://www.youtube.com/channel/UCU76s7FGtDvDta2mf2Zdn4Q','https://csr.sinyi.com.tw/client/innovation.php','https://www.youtube.com/user/sinyicity','https://www.sinyi.com.tw/aboutsinyi/aboutsinyi_publish','https://csr.sinyi.com.tw/news/anti-pandemic.php','https://events.sinyi.com.tw/20190828_webintro/','https://csr.sinyi.com.tw/society/charity.php','https://www.ncscre.nccu.edu.tw/node/638','https://www.youtube.com/channel/UCV-0ttUE0Z-BTuBcwvQNjgQ','https://www.youtube.com/playlist?list=PLftfxwJcQDUCL8v2oB_jHWHue4I6vHyBz','https://www.youtube.com/watch?v=mlqY5X2oTuk','https://hr.sinyi.com.tw/events/1/?utm_source=Facebook_hr&utm_medium=display&utm_term=web&utm_content=video','https://events.sinyi.com.tw/tvc2018-forhome/']
     if n==1:
         term = "信義 房屋"
-        whitelist = ['https://hr.sinyi.com.tw/','https://www.youtube.com/channel/UCU76s7FGtDvDta2mf2Zdn4Q','https://csr.sinyi.com.tw/client/innovation.php','https://events.sinyi.com.tw/20190828_webintro/','https://www.sinyi.com.tw/aboutsinyi/aboutsinyi_publish','https://www.youtube.com/watch?v=TwZwAAqkX_k','https://www.sinyinews.com.tw/dailynews/newsct/10089','https://money.udn.com/money/story/12276/6669984','https://www.youtube.com/watch?v=1OxZNuwlUOk','https://www.youtube.com/watch?v=UbAx3mGfihg','https://www.youtube.com/watch?v=tbdpEt65LRI','https://hr.sinyi.com.tw/events/tvc/','https://hr.sinyi.com.tw/events/1/?utm_source=Facebook_hr&utm_medium=display&utm_term=web&utm_content=video','https://www.youtube.com/watch?v=ZxeBZggs_-s','https://www.youtube.com/watch?v=3besPfdWyW0']
+        whitelist = ['https://hr.sinyi.com.tw/','https://www.youtube.com/channel/UCU76s7FGtDvDta2mf2Zdn4Q','https://csr.sinyi.com.tw/client/innovation.php','https://www.youtube.com/user/sinyicity','https://www.sinyi.com.tw/aboutsinyi/aboutsinyi_publish','https://csr.sinyi.com.tw/news/anti-pandemic.php','https://events.sinyi.com.tw/20190828_webintro/','https://csr.sinyi.com.tw/society/charity.php','https://www.ncscre.nccu.edu.tw/node/638','https://www.youtube.com/channel/UCV-0ttUE0Z-BTuBcwvQNjgQ','https://www.youtube.com/playlist?list=PLftfxwJcQDUCL8v2oB_jHWHue4I6vHyBz','https://hr.sinyi.com.tw/events/1/?utm_source=Facebook_hr&utm_medium=display&utm_term=web&utm_content=video','https://events.sinyi.com.tw/tvc2018-forhome/','https://www.youtube.com/watch?v=rGQqegE8rbc','https://csr.sinyi.com.tw/society/community.php']
     if n==2:
         term = "信義房仲"
-        whitelist = ['https://www.youtube.com/watch?v=juJTjzi4DV0','https://www.youtube.com/watch?v=uOsZiIhyxVM','https://www.youtube.com/channel/UCU76s7FGtDvDta2mf2Zdn4Q','https://www.youtube.com/watch?v=X7OcMNhXPD8','https://www.sinyinews.com.tw/sinyipedia/buyarticle/337','https://www.youtube.com/watch?v=1OxZNuwlUOk','https://www.youtube.com/watch?v=tbdpEt65LRI','https://www.youtube.com/watch?v=TwZwAAqkX_k','https://www.youtube.com/watch?v=Hi-IY6R7_10','https://www.sinyinews.com.tw/dailynews/newsct/10089','https://www.storm.mg/lifestyle/3482729','https://www.sinyinews.com.tw/s_channel/videodetail/58','https://www.youtube.com/watch?v=M6bqmUvLCTI','https://www.youtube.com/watch?v=sMEFJXfI7tg','https://www.facebook.com/SinyiRealtyInc.HR/videos/%E6%88%BF%E4%BB%B2%E5%B7%A5%E4%BD%9C%E9%96%8B%E7%AE%B1%E5%85%AD%E5%80%8B%E6%9C%88%E4%B9%8B%E5%BE%8C%E6%88%91%E9%82%84%E5%9C%A8/932749653922769/']
+        whitelist = ['https://www.youtube.com/watch?v=1OxZNuwlUOk','https://www.youtube.com/watch?v=uOsZiIhyxVM','https://www.youtube.com/watch?v=juJTjzi4DV0','https://www.sinyinews.com.tw/sinyipedia/buyarticle/337','https://www.youtube.com/channel/UCU76s7FGtDvDta2mf2Zdn4Q','https://hr.sinyi.com.tw/events/1/?utm_source=Facebook_hr&utm_medium=display&utm_term=web&utm_content=video','https://www.youtube.com/watch?v=tbdpEt65LRI','https://www.youtube.com/user/sinyicity','https://www.youtube.com/watch?v=iWOHUiGwnPE','https://csr.sinyi.com.tw/client/innovation.php','https://hr.sinyi.com.tw/events/tvc/','https://www.youtube.com/watch?v=nj1mTUG8yJo','https://www.sinyinews.com.tw/s_channel/videodetail/59','https://www.youtube.com/watch?v=A5GuB3Enw9U','https://www.mirrormedia.mg/story/20230712cnt001/']
     if n==3:
         term = "信義 房仲"
-        whitelist = ['https://www.youtube.com/watch?v=uOsZiIhyxVM','https://www.youtube.com/watch?v=juJTjzi4DV0','https://www.youtube.com/channel/UCU76s7FGtDvDta2mf2Zdn4Q','https://www.youtube.com/watch?v=X7OcMNhXPD8','https://www.sinyinews.com.tw/sinyipedia/buyarticle/337','https://www.youtube.com/watch?v=1OxZNuwlUOk','https://www.youtube.com/watch?v=tbdpEt65LRI','https://www.youtube.com/watch?v=TwZwAAqkX_k','https://www.youtube.com/watch?v=Hi-IY6R7_10','https://www.facebook.com/SinyiRealtyInc.HR/videos/%E6%88%BF%E4%BB%B2%E5%B7%A5%E4%BD%9C%E9%96%8B%E7%AE%B1%E5%85%AD%E5%80%8B%E6%9C%88%E4%B9%8B%E5%BE%8C%E6%88%91%E9%82%84%E5%9C%A8/932749653922769/','https://sinyipodcast.com.tw/article/news/trend/44','https://www.youtube.com/watch?v=sMEFJXfI7tg','https://www.youtube.com/watch?v=JzH-XYkEjgg','https://www.storm.mg/lifestyle/3482729','https://www.sinyinews.com.tw/dailynews/newsct/10089']
+        whitelist = ['https://www.youtube.com/watch?v=1OxZNuwlUOk','https://www.youtube.com/watch?v=uOsZiIhyxVM','https://www.youtube.com/watch?v=juJTjzi4DV0','https://www.sinyinews.com.tw/sinyipedia/buyarticle/337','https://hr.sinyi.com.tw/events/1/?utm_source=Facebook_hr&utm_medium=display&utm_term=web&utm_content=video','https://www.youtube.com/watch?v=tbdpEt65LRI','https://hr.sinyi.com.tw/events/tvc/','https://www.sinyinews.com.tw/s_channel/videodetail/58','https://sinyipodcast.com.tw/article/news/trend/44','https://www.youtube.com/user/sinyicity','https://www.youtube.com/watch?v=iWOHUiGwnPE','https://www.youtube.com/channel/UCU76s7FGtDvDta2mf2Zdn4Q','https://www.sinyinews.com.tw/s_channel/videodetail/59']
     return term, random.choice(whitelist)
 
 termlist = ["信義房屋","信義 房屋","信義房仲","信義 房仲"]

+ 4 - 4
website_clickjobs/type-Y/c1.py

@@ -5,16 +5,16 @@ def pickvideo():
     n = random.randint(0,3)
     if n==0:
         term = "信義房屋"
-        whitelist = ["https://www.youtube.com/watch?v=7UGiKEc2JEU","https://www.youtube.com/watch?v=J_3FkWnoKX8","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=fx4fTBh9PFo","https://www.youtube.com/watch?v=9lJ3gnqMT4o","https://www.youtube.com/watch?v=DjCW-aD4TP4","https://www.youtube.com/watch?v=tbdpEt65LRI","https://www.youtube.com/watch?v=WC_rYXVP2g8","https://www.youtube.com/watch?v=Hi-IY6R7_10","https://www.youtube.com/watch?v=juJTjzi4DV0","https://www.youtube.com/watch?v=J26zmN2xgRI","https://www.youtube.com/watch?v=iWOHUiGwnPE","https://www.youtube.com/watch?v=uOsZiIhyxVM"]
+        whitelist = ['https://www.youtube.com/watch?v=UkxtlJAaqP8','https://www.youtube.com/watch?v=hBTJhu4BsM4','https://www.youtube.com/watch?v=MNWMcmGw1ms','https://www.youtube.com/watch?v=bW2gn0uOUpY','https://www.youtube.com/watch?v=xWLn31RO5D0','https://www.youtube.com/watch?v=GDYKd3cvEXk','https://www.youtube.com/watch?v=QzyTD949cVk','https://www.youtube.com/watch?v=GDYKd3cvEXk','https://www.youtube.com/watch?v=9lJ3gnqMT4o','https://www.youtube.com/watch?v=JKQ4ZGEKu7c','https://www.youtube.com/watch?v=fx4fTBh9PFo','https://www.youtube.com/watch?v=Hi-IY6R7_10','https://www.youtube.com/watch?v=Kh4Whhp2kYA','https://www.youtube.com/watch?v=WC_rYXVP2g8']
     if n==1:
         term = "信義 房屋"
-        whitelist = ["https://www.youtube.com/watch?v=7UGiKEc2JEU","https://www.youtube.com/watch?v=J_3FkWnoKX8","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=fx4fTBh9PFo","https://www.youtube.com/watch?v=JKQ4ZGEKu7c","https://www.youtube.com/watch?v=s2kwmoleE08","https://www.youtube.com/watch?v=WC_rYXVP2g8","https://www.youtube.com/watch?v=Hi-IY6R7_10","https://www.youtube.com/watch?v=DjCW-aD4TP4","https://www.youtube.com/watch?v=tbdpEt65LRI","https://www.youtube.com/watch?v=juJTjzi4DV0","https://www.youtube.com/watch?v=iWOHUiGwnPE"]
+        whitelist = ['https://www.youtube.com/watch?v=UkxtlJAaqP8','https://www.youtube.com/watch?v=hBTJhu4BsM4','https://www.youtube.com/watch?v=MNWMcmGw1ms','https://www.youtube.com/watch?v=bW2gn0uOUpY','https://www.youtube.com/watch?v=xWLn31RO5D0','https://www.youtube.com/watch?v=GDYKd3cvEXk','https://www.youtube.com/watch?v=QzyTD949cVk','https://www.youtube.com/watch?v=9lJ3gnqMT4o','https://www.youtube.com/watch?v=GDYKd3cvEXk','https://www.youtube.com/watch?v=QzyTD949cVk','https://www.youtube.com/watch?v=JKQ4ZGEKu7c','https://www.youtube.com/watch?v=fx4fTBh9PFo','https://www.youtube.com/watch?v=Hi-IY6R7_10','https://www.youtube.com/watch?v=WC_rYXVP2g8']
     if n==2:
         term = "信義房仲"
-        whitelist = ["https://www.youtube.com/watch?v=9lJ3gnqMT4o","https://www.youtube.com/watch?v=_MHzFU6pmUU","https://www.youtube.com/watch?v=Hi-IY6R7_10","https://www.youtube.com/watch?v=uOsZiIhyxVM","https://www.youtube.com/watch?v=fx4fTBh9PFo","https://www.youtube.com/watch?v=juJTjzi4DV0","https://www.youtube.com/watch?v=tbdpEt65LRI","https://www.youtube.com/watch?v=iA4__EcJE5I","https://www.youtube.com/watch?v=DjCW-aD4TP4","https://www.youtube.com/watch?v=WC_rYXVP2g8","https://www.youtube.com/watch?v=Z4mts-HrBvU","https://www.youtube.com/watch?v=1OxZNuwlUOk","https://www.youtube.com/watch?v=xoGSw4txYHA","https://www.youtube.com/watch?v=4iy450OXGyE","https://www.youtube.com/watch?v=e2jILHgLW10"]
+        whitelist = ['https://www.youtube.com/watch?v=9lJ3gnqMT4o','https://www.youtube.com/watch?v=uOsZiIhyxVM','https://www.youtube.com/watch?v=2sGGCwkjN_s','https://www.youtube.com/watch?v=GDYKd3cvEXk','https://www.youtube.com/watch?v=Hi-IY6R7_10','https://www.youtube.com/watch?v=juJTjzi4DV0','https://www.youtube.com/watch?v=tbdpEt65LRI','https://www.youtube.com/watch?v=fx4fTBh9PFo','https://www.youtube.com/watch?v=iWOHUiGwnPE','https://www.youtube.com/watch?v=iA4__EcJE5I','https://www.youtube.com/watch?v=WC_rYXVP2g8','https://www.youtube.com/watch?v=Z4mts-HrBvU','https://www.youtube.com/watch?v=iK_qwi3ygyM','https://www.youtube.com/watch?v=sMEFJXfI7tg']
     if n==3:
         term = "信義 房仲"
-        whitelist = ["https://www.youtube.com/watch?v=9lJ3gnqMT4o","https://www.youtube.com/watch?v=Hi-IY6R7_10","https://www.youtube.com/watch?v=fx4fTBh9PFo","https://www.youtube.com/watch?v=uOsZiIhyxVM","https://www.youtube.com/watch?v=_MHzFU6pmUU","https://www.youtube.com/watch?v=iWOHUiGwnPE","https://www.youtube.com/watch?v=juJTjzi4DV0","https://www.youtube.com/watch?v=tbdpEt65LRI","https://www.youtube.com/watch?v=iA4__EcJE5I","https://www.youtube.com/watch?v=WC_rYXVP2g8","https://www.youtube.com/watch?v=Z4mts-HrBvU","https://www.youtube.com/watch?v=DjCW-aD4TP4"]
+        whitelist = ['https://www.youtube.com/watch?v=UkxtlJAaqP8','https://www.youtube.com/watch?v=hBTJhu4BsM4','https://www.youtube.com/watch?v=MNWMcmGw1ms','https://www.youtube.com/watch?v=4-sJLbMLP-0','https://www.youtube.com/shorts/D4g0IFni_DI','https://www.youtube.com/watch?v=bW2gn0uOUpY','https://www.youtube.com/watch?v=xWLn31RO5D0','https://www.youtube.com/watch?v=GDYKd3cvEXk','https://www.youtube.com/watch?v=7UGiKEc2JEU','https://www.youtube.com/watch?v=QzyTD949cVk','https://www.youtube.com/watch?v=uOsZiIhyxVM','https://www.youtube.com/watch?v=9lJ3gnqMT4o','https://www.youtube.com/watch?v=GDYKd3cvEXk','https://www.youtube.com/watch?v=fx4fTBh9PFo','https://www.youtube.com/watch?v=Hi-IY6R7_10']
     return term, random.choice(whitelist)
 
 is_confidential = 1 #set to 1 if true