123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162 |
- import time
- 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.chrome.service import Service
- from selenium.webdriver.support import expected_conditions as EC
- import codecs
- import random
- import requests
- import datetime
- import dataset
- import time
- import traceback
- import sys
- import fire
- import random
- db = dataset.connect('mysql://choozmo:pAssw0rd@db.ptt.cx:3306/seo?charset=utf8mb4')
- table=db['general_log']
- driver = None
- headers = {
- "Authorization": "Bearer " + "6SDULL1Ebklduc6TFxa97AFto5Sj21kyJ30CxiLiSoi",
- "Content-Type": "application/x-www-form-urlencoded"
- }
- def rua():
- pool = [
- "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:73.0) Gecko/20100101 Firefox/73.0",
- "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0",
- "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36"
- "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.101 Safari/537.36",
- "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36",
- "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36",
- "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36 OPR/68.0.3618.125",
- ]
- return random.choice(pool)
- 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(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)
- # stealth(driver,
- # languages=["en-US", "en"],
- # vendor="Google Inc.",
- # platform="Win32",
- # webgl_vendor="Intel Inc.",
- # renderer="Intel Iris OpenGL Engine",
- # fix_hairline=True,
- # )
- driver.get(googleurl)
- time.sleep(6)
- while True:
- try:
- elmts = driver.find_elements(By.XPATH, "//div[@class='yuRUbf']/a")
- print('尋找')
- break
- except:
- pass
- idx=1
- ranking=-1
- lenelmts=len(elmts)
- print('搜尋結果數量',lenelmts)
- if lenelmts <=0:
- os.system('python3 tplink_reboot.py')
- time.sleep(200)
- os.system('netsh wlan connect TP-Link_78E0')
- # os.system('docker container restart p4444')
- return
- # if len(elmts) <=0:
- # send_msg('network failed...')
- # driver.save_screenshot('c:/tmp/test.png')
- 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(),'num':1})
- webdriver.ActionChains(driver).move_to_element(elmt).perform()
- webdriver.ActionChains(driver).move_to_element(elmt).click().perform()
- break
- idx+=1
- def run_once(q):
- global driver
- result=[]
- os.system('docker container restart p4444')
- time.sleep(12)
- user_agent = rua()
- options = webdriver.ChromeOptions()
- options.add_argument('--headless')
- options.add_argument("--no-sandbox")
- options.add_argument("--disable-dev-shm-usage")
- options.add_argument('--disable-blink-features=AutomationControlled')
- # options.add_argument("--user-agent=" +user_agent)
- # options.add_argument("--incognito")
- driver = webdriver.Remote(
- command_executor='http://127.0.0.1:4444/wd/hub',
- options=options
- )
- driver.delete_all_cookies()
- driver.set_window_size(1400,1000)
- print('到此')
- process_query(q)
- time.sleep(3)
- driver.quit()
- # sys.exit()
- cursor = db.query('SELECT query FROM seo.hhh_gsc_imp where position >=2.5 and position <=8.5 order by rand() limit 500;')
- lst=[]
- for c in cursor:
- lst.append(c['query'])
- while True:
- kw=random.choice(lst)
- print(kw)
- run_once((kw, 'hhh.com.tw', 4444))
- #class JParams(object):
- #
- # def get(self, kw, domain, port):
- # print(kw)
- # print(domain)
- # run_once((kw, domain, port))
- #if __name__ == '__main__':
- # fire.Fire(JParams)
|