123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149 |
- import sys
- import dataset
- from selenium import webdriver
- import traceback
- import datetime
- import codecs
- import time
- import urllib
- import argparse
- import logging
- import sys
- from logging.handlers import SysLogHandler
- import socket
- import pandas as pd
- import random
- from selenium.webdriver.common.by import By
- from selenium.webdriver.chrome.service import Service
- import os
- from random import randint
- import pymysql
- pymysql.install_as_MySQLdb()
- path = 'C:\portable\chromedriver'
- path_z = '/Users/zooeytsai/Downloads/chromedriver 2'
- driver = None
- db = dataset.connect('mysql://choozmo:pAssw0rd@db.ptt.cx:3306/seo?charset=utf8mb4')
- lst = []
- table = db['google_rank']
- 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 process_one(item):
- global driver
-
- term = item[0]
- domain = item[1]
- print(term, domain)
-
- escaped_search_term = urllib.parse.quote(term)
- googleurl = 'https://www.google.com/search?q={}&num={}&hl={}'.format(escaped_search_term, 100, 'zh-TW')
- print(googleurl)
- driver.get(googleurl)
- time.sleep(6)
- # fname=term.replace(' ','_')
- # driver.save_screenshot('c:/tmp/seo/'+fname+'.png')
- # df=pd.DataFrame()
-
- elmts = driver.find_elements(By.XPATH,"//div[@class='yuRUbf']/a")
- cnt = 1
- datadict = {'搜尋詞': [], '結果標題': [], '結果網址': [], '結果名次': []}
-
- if len(elmts) == 0:
- print('chrome異常')
- os.chdir('/root')
- os.system('python3 reboot.py')
-
- for elmt in elmts:
- try:
- href = elmt.get_attribute('href')
-
- datadict['搜尋詞'].append(term)
- datadict['結果標題'].append(elmt.text)
- datadict['結果網址'].append(href)
- datadict['結果名次'].append(str(cnt))
- if domain in href:
- print(href)
- print(elmt.text)
- table.insert(
- {'title': elmt.text, 'url': href, 'keyword': term, 'dt': datetime.datetime.now(), 'num': cnt})
- cnt += 1
- except:
- print('href2 exception')
- traceback.print_exc()
- if len(datadict['結果標題']) <= 0:
- print('None')
- driver.quit()
- sys.exit()
- # df['搜尋詞']=datadict['搜尋詞']
- # df['結果標題']=datadict['結果標題']
- # df['結果網址']=datadict['結果網址']
- # df['結果名次']=datadict['結果名次']
- #
- # df.to_excel('/Users/zooeytsai/'+fname+".xls")
-
- driver.quit()
- print('中場休息')
- time.sleep(randint(90, 120))
- def run_once(pport, item):
- global driver
- result = []
- s = Service('/root/driver/chromedriver')
- user_agent = rua()
- options = webdriver.ChromeOptions()
- options.add_argument('--headless')
- options.add_argument('--remote-debugging-port=9222')
- options.add_experimental_option("debuggerAddress", f"127.0.0.1:{pport}")
- options.add_argument("--user-agent=" + user_agent)
- options.add_argument("--incognito")
-
- driver = webdriver.Chrome(options=options, service=s)
-
- driver.delete_all_cookies()
- driver.set_window_size(1400, 1000)
-
- process_one(item)
- time.sleep(3)
- driver.quit()
- cursor = db.query('select term,domain from seo.selected_kw')
- for c in cursor:
- lst.append([c['term'], c['domain']])
-
- for i in lst:
- print('這裡', i)
- while True:
- try:
- os.system('docker container restart tiny9')
- time.sleep(1)
- run_once(9928, i)
- print('docker開啟完成')
- cur = db.query('select * from seo.google_rank order by id desc limit 1')
- for c in cur:
- kw = c['keyword']
- if kw != i[0]:
- print('稍等,上一筆待完成')
- time.sleep(60)
- break
- except:
- os.system('docker container restart tiny9')
- time.sleep(15)
- print('等待進行下一個關鍵字')
- time.sleep(5)
|