gsearch_selenium.py 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. from selenium import webdriver
  2. from selenium.webdriver.common.desired_capabilities import DesiredCapabilities
  3. import time
  4. import os
  5. import datetime
  6. import urllib.parse
  7. from selenium.webdriver.support.ui import WebDriverWait
  8. from selenium.webdriver.common.by import By
  9. from selenium.webdriver.support import expected_conditions as EC
  10. import codecs
  11. import random
  12. from bs4 import BeautifulSoup
  13. import requests
  14. import time
  15. import rpyc
  16. import sys
  17. import docker
  18. import googlesearch
  19. import codecs
  20. import sys
  21. import time
  22. import dataset
  23. import os
  24. db = dataset.connect('mysql://choozmo:pAssw0rd@db.ptt.cx:3306/hhh?charset=utf8mb4')
  25. #cursor=db.query('SELECT kw FROM hhh.hhh_contentgap_serp where ranking is not null;')
  26. #cursor=db.query('SELECT kw FROM hhh.hhh_contentgap_serp where kw not in (select distinct kw from hhh_contentgap_serp where id >= 155)')
  27. kwlst={}
  28. #for c in cursor:
  29. # kwlst[c['kw']]=1
  30. table=db['hhh_contentgap_serp']
  31. curdir=os.path.realpath('.')
  32. #fr=codecs.open(curdir+os.sep+'contentgap.txt','r','utf-8')
  33. #fr=codecs.open(curdir+os.sep+'hhh\\seo\\contentgap.txt','r','utf-8')
  34. fr=codecs.open('C:\\gitlab\\kw_tools\\kw_tools\\hhh\\SEO\\contentgap.txt','r','utf-8')
  35. lines=fr.readlines()
  36. lst=[]
  37. for l in lines:
  38. lst.append(l.replace('\n',''))
  39. headers = {
  40. "Authorization": "Bearer " + "t35vhZtWNgvDNWHc3DJh0OKll3mcB9GvC8K2EAkBug2",
  41. "Content-Type": "application/x-www-form-urlencoded"
  42. }
  43. def send_msg(kw):
  44. params = {"message": "處理關鍵字: "+kw}
  45. r = requests.post("https://notify-api.line.me/api/notify",headers=headers, params=params)
  46. def empty_query(q):
  47. global driver
  48. googleurl='https://www.google.com/search?q='+urllib.parse.quote(q)
  49. driver.get(googleurl)
  50. time.sleep(3)
  51. def process_query(qs,number_results=10,language_code='en',pat='hhh.com.tw'):
  52. global driver
  53. escaped_search_term=urllib.parse.quote(qs)
  54. # escaped_search_term = qs.replace(' ', '+')
  55. # googleurl='https://www.google.com/search?q='+
  56. googleurl = 'https://www.google.com/search?q={}&num={}&hl={}'.format(escaped_search_term, number_results+1,language_code)
  57. driver.get(googleurl)
  58. elmts=driver.find_elements_by_xpath("//div[@class='yuRUbf']/a")
  59. idx=0
  60. for elmt in elmts:
  61. try:
  62. href=elmt.get_attribute('href')
  63. print(str(idx)+': '+href)
  64. if pat in href:
  65. return idx
  66. idx+=1
  67. except:
  68. print('href exception')
  69. try:
  70. elmt=driver.find_element_by_xpath("//a[@id='pnnext']")
  71. webdriver.ActionChains(driver).move_to_element(elmt).perform()
  72. webdriver.ActionChains(driver).move_to_element(elmt).click().perform()
  73. except:
  74. print('pnnext exception')
  75. return None
  76. time.sleep(4)
  77. elmts=driver.find_elements_by_xpath("//div[@class='yuRUbf']/a")
  78. for elmt in elmts:
  79. try:
  80. href=elmt.get_attribute('href')
  81. print(str(idx)+': '+href)
  82. if pat in href:
  83. return idx
  84. idx+=1
  85. except:
  86. print('href2 exception')
  87. result=[]
  88. driver=None
  89. def restart_browser():
  90. client = docker.from_env()
  91. ls=client.containers.list()
  92. print(ls)
  93. ls[0].restart()
  94. time.sleep(10)
  95. # options = webdriver.ChromeOptions()
  96. #driver=webdriver.Chrome(desired_capabilities=options.to_capabilities())
  97. driver = webdriver.Remote(
  98. command_executor='http://127.0.0.1:4444/wd/hub',
  99. # command_executor='http://172.104.93.163:4444/wd/hub',
  100. #command_executor='http://dev2.choozmo.com:14444/wd/hub',
  101. # desired_capabilities=options.to_capabilities())
  102. desired_capabilities=DesiredCapabilities.CHROME)
  103. driver.set_window_size(1400,1000)
  104. return driver
  105. for l in lst:
  106. #for l in lst[2:]:
  107. if True:
  108. # if kwlst.get(l) is None:
  109. driver=restart_browser()
  110. # l='房間 油漆'
  111. # idx=process_query(,number_results=100,language_code='zh-TW',pat='hhh.com.tw')
  112. idx=process_query(l,number_results=100,language_code='zh-TW',pat='hhh.com.tw')
  113. table.insert({'kw':l,'ranking':idx,'dt':datetime.datetime.now()})
  114. print({'kw':l,'ranking':idx})
  115. db.commit()
  116. # time.sleep(9999)
  117. # time.sleep(4)