|
@@ -97,7 +97,7 @@ def process_query(urllist, query, client):
|
|
|
webdriver.ActionChains(driver).move_to_element(el).perform()
|
|
|
webdriver.ActionChains(driver).move_to_element(el).click().perform()
|
|
|
print("Rank: " + str(n))
|
|
|
- db['sns_log'].insert({"kw": query, "ranking": n, "url": href, "dt": dt.now(), "client": client, "title": elmt.text})
|
|
|
+ db['sns_log'].insert({"kw": query, "ranking": n, "url": href, "dt": dt.now(), "client": client, "title": el.text})
|
|
|
duration = random.randint(40,60)
|
|
|
time.sleep(duration)
|
|
|
|