| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131 | import timeimport jsonfrom selenium import webdriverfrom selenium.webdriver.common.desired_capabilities import DesiredCapabilitiesimport timeimport osimport urllib.parsefrom selenium.webdriver.support.ui import WebDriverWaitfrom selenium.webdriver.common.by import Byfrom selenium.webdriver.chrome.service import Servicefrom selenium.webdriver.support import expected_conditions as ECimport codecsimport randomimport requestsimport datetimeimport datasetimport timeimport tracebackimport sysimport firedb = dataset.connect('mysql://choozmo:pAssw0rd@db.ptt.cx:3306/seo?charset=utf8mb4')table=db['general_log']  driver = Nonedef 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(qs):    q=qs[0]    domain=qs[1]    global driver    googleurl = 'https://www.google.com/search?q={}&num={}&hl={}'.format(urllib.parse.quote(q), 100,'zh-TW')    print(googleurl)    driver.get(googleurl)    time.sleep(6)#    driver.save_screenshot('c:/tmp/test.png')    elmts=driver.find_elements(By.XPATH,"//div[@class='yuRUbf']/a")    idx=1    ranking=-1    print(len(elmts))#    if len(elmts) <=0:#    driver.save_screenshot('c:/tmp/test.png')    clicked=False    for elmt in elmts:        href=elmt.get_attribute('href')        txt=elmt.text        if len(txt)>10:            if domain in href:                print('clicked....')                print(href)                print(txt)                print("ranking", idx)#                table.insert({'kw':q,'domain':domain,'ranking':idx,'title':txt,'url':href,'dt':datetime.datetime.now()})                clicked=True                webdriver.ActionChains(driver).move_to_element(elmt).perform()                webdriver.ActionChains(driver).move_to_element(elmt).click().perform()                time.sleep(5)                break        idx+=1    if not clicked:        print('quit')        driver.quit()        os.exit(-1)def run_once(q):    global driver    result=[]    options = webdriver.ChromeOptions()    options.add_argument('--headless')#    options.add_argument('--remote-debugging-port=9922')    options.add_argument('--remote-debugging-port='+str(q[2]))#    options.add_experimental_option("debuggerAddress", "127.00:9922")    # options.add_argument("--user-agent=" +user_agent)    options.add_argument("--incognito")#    driver = webdriver.Chrome(executable_path=r'C:\portable\webdriver\chrome98\chromedriver.exe',options=options)    if os.name=='nt':        driver = webdriver.Chrome(executable_path=r'C:\portable\webdriver\chrome98\chromedriver.exe',options=options)    else:        driver = webdriver.Chrome(executable_path='/opt/webdriver/98/chromedriver',options=options)    driver.delete_all_cookies()    driver.set_window_size(1400,1000)    print('到此')    process_query(q)    time.sleep(3)    driver.quit()#for c in lst:#while True:#    try:#        c=random.choice(lst)#    except:#        traceback.print_exc()#    sleepint=random.randint(320,520)#    time.sleep(sleepint)class JParams(object):  def get(self, kw,domain,port):    print(kw)    print(domain)    try:        run_once( (kw,domain,port)   )    except:        print('exception, restarting.....')        return -1#        os.system('docker container restart tiny1')#        time.sleep(10)if __name__ == '__main__':  val=fire.Fire(JParams)
 |