fetch_serp.py 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  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=site:hsinfei.com'
  57. driver.get(googleurl)
  58. time.sleep(3)
  59. print(driver.page_source)
  60. elmts=driver.find_elements_by_xpath("//div[@class='yuRUbf']/a")
  61. print(elmts)
  62. idx=0
  63. for elmt in elmts:
  64. try:
  65. href=elmt.get_attribute('href')
  66. print(str(idx)+': '+href)
  67. if pat in href:
  68. return idx
  69. idx+=1
  70. except:
  71. print('href exception')
  72. try:
  73. elmt=driver.find_element_by_xpath("//a[@id='pnnext']")
  74. webdriver.ActionChains(driver).move_to_element(elmt).perform()
  75. webdriver.ActionChains(driver).move_to_element(elmt).click().perform()
  76. except:
  77. print('pnnext exception')
  78. return None
  79. time.sleep(4)
  80. elmts=driver.find_elements_by_xpath("//div[@class='yuRUbf']/a")
  81. for elmt in elmts:
  82. try:
  83. href=elmt.get_attribute('href')
  84. print(str(idx)+': '+href)
  85. if pat in href:
  86. return idx
  87. idx+=1
  88. except:
  89. print('href2 exception')
  90. time.sleep(9999)
  91. result=[]
  92. driver=None
  93. def restart_browser():
  94. os.system('docker container restart p4444')
  95. # client = docker.from_env()
  96. # ls=client.containers.list()
  97. # print(ls)
  98. # ls[0].restart()
  99. time.sleep(10)
  100. options = webdriver.ChromeOptions()
  101. # options.add_argument("--proxy-server=https://47.241.72.41:80")
  102. #driver=webdriver.Chrome(desired_capabilities=options.to_capabilities())
  103. driver = webdriver.Remote(
  104. command_executor='http://127.0.0.1:4444/wd/hub',
  105. # command_executor='http://172.104.93.163:4444/wd/hub',
  106. #command_executor='http://dev2.choozmo.com:14444/wd/hub',
  107. desired_capabilities=options.to_capabilities())
  108. # desired_capabilities=DesiredCapabilities.CHROME)
  109. driver.set_window_size(1400,1000)
  110. print('driver ready')
  111. return driver
  112. for l in lst:
  113. #for l in lst[21:]:
  114. #for l in lst[32:]:
  115. #for l in lst[42:]:
  116. if True:
  117. # if kwlst.get(l) is None:
  118. driver=restart_browser()
  119. # l='房間 油漆'
  120. # idx=process_query(,number_results=100,language_code='zh-TW',pat='hhh.com.tw')
  121. idx=process_query(l,number_results=100,language_code='zh-TW',pat='hhh.com.tw')
  122. # if idx is None:
  123. # sys.exit()
  124. table.insert({'kw':l,'ranking':idx,'dt':datetime.datetime.now()})
  125. print({'kw':l,'ranking':idx})
  126. db.commit()
  127. # time.sleep(9999)
  128. # time.sleep(4)