123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- from selenium import webdriver
- import time
- import pickle
- import codecs
- from selenium.webdriver.common import keys
- from selenium.webdriver.common.keys import Keys
- import sys
- import os
- import time
- import random
- import re
- from browser_common import JBrowser
- import datetime
- def get_designer_statistics(designer_list):
- jb=JBrowser()
- pnum=random.randint(2,7)
- jb.set_profile_path("Profile "+str(pnum))
-
-
-
-
-
-
-
-
- details=[]
- masters=[]
- for q in designer_list:
- googleurl='https://www.google.com/search?q='+q
- jb.get(googleurl)
- driver=jb.get_driver()
- time.sleep(3)
- elmts=driver.find_elements_by_xpath("//div[@class='g']//div[@class='yuRUbf']//a")
- idx=1
- ranking=-1
- for elmt in elmts:
- href=elmt.get_attribute('href')
- txt=elmt.text
- if len(txt)>10:
- if 'hhh.com.tw' in href:
- webdriver.ActionChains(driver).move_to_element(elmt).perform()
- webdriver.ActionChains(driver).move_to_element(elmt).click().perform()
- time.sleep(15)
- driver.quit()
- return
- print(href)
- print(txt)
-
- details.append({'designer':q,'title':txt,'url':href,'ranking':idx})
- idx+=1
- time.sleep(3)
- driver.quit()
- return {'masters':masters,'details':details}
- def find_master_by_designer(masters,designer):
- for m in masters:
- if m['designer']==designer:
- return m
- qlist=['卓林室內設計','卓林設計 林繹寬','卓林設計 設計師','卓林設計 機能宅','卓林設計 室內設計','卓林 室內設計','卓林設計 坪效','卓林設計 空間設計']
- while True:
- q=random.choice(qlist)
- print(q)
- results=get_designer_statistics([q])
- print(results)
- time.sleep(15)
- time.sleep(9999)
|