Bläddra i källkod

Merge remote-tracking branch 'origin/master'

zooeytsai 3 år sedan
förälder
incheckning
6ba1ac99c3

+ 25 - 5
SEO/clickbot_100.py

@@ -14,20 +14,20 @@ import logging
 import sys
 from logging.handlers import SysLogHandler
 import socket
+import pandas as pd
 
 _LOG_SERVER = ('hhh.ptt.cx', 514)
 logger = logging.getLogger('clickbot_100')
 handler1 = SysLogHandler(address=_LOG_SERVER,socktype=socket.SOCK_DGRAM)
 logger.addHandler(handler1)
-
-
+logger.debug('[clickbot_100][清原]begin')
 
 
 def restart_browser():
     options = webdriver.ChromeOptions()
     options.add_argument('--headless') 
     driver=webdriver.Chrome(options=options)
-    driver.set_window_size(1400,1000)
+    driver.set_window_size(950,6000)
     return driver
 
 
@@ -35,7 +35,7 @@ def process_one():
     db = dataset.connect('mysql://choozmo:pAssw0rd@db.ptt.cx:3306/seo?charset=utf8mb4')
     lst=[]
     table=db['save_result']
-    cursor=db.query('select term from selected_kw where client="清原"')
+    cursor=db.query('select term from selected_kw where client="清原" and term not in (SELECT distinct(keyword) FROM seo.save_result where url like "%taroboba-yuan.com%" and datediff(now(),dt)=0)')
     for c in cursor:
         lst.append(c['term'])
 
@@ -49,11 +49,16 @@ def process_one():
     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")
 
     clickelmt=None
     cnt=1
+    datadict={'搜尋詞':[],'結果標題':[],'結果網址':[],'結果名次':[]}
+    
     for elmt in elmts:
         try:
             href=elmt.get_attribute('href')
@@ -63,6 +68,11 @@ def process_one():
 
             print(href)
             print(elmt.text)
+            datadict['搜尋詞'].append(term)
+            datadict['結果標題'].append(elmt.text)
+            datadict['結果網址'].append(href)
+            datadict['結果名次'].append(str(cnt))
+
             table.insert({'title':elmt.text,'url':href,'keyword':term,'dt':datetime.datetime.now(),'num':cnt})
             cnt+=1
         except:
@@ -71,7 +81,16 @@ def process_one():
     if clickelmt:
         webdriver.ActionChains(driver).move_to_element(clickelmt).perform()
         webdriver.ActionChains(driver).move_to_element(clickelmt).click().perform()
+    if len(datadict['結果標題'])<=0:
+        print('None')
+        driver.quit()
+        sys.exit()
+    df['搜尋詞']=datadict['搜尋詞']
+    df['結果標題']=datadict['結果標題']
+    df['結果網址']=datadict['結果網址']
+    df['結果名次']=datadict['結果名次']
 
+    df.to_excel('c:/tmp/seo/'+fname+".xls")
 
     driver.quit()
 
@@ -83,7 +102,8 @@ args = parser.parse_args()
 
 if args.loop:
 
-    schedule.every(6).minutes.do(process_one)
+#    schedule.every(6).minutes.do(process_one)
+    schedule.every(0.4).minutes.do(process_one)
 
     while True:
         schedule.run_pending()

+ 12 - 0
docker/alpine-test/Dockerfile

@@ -0,0 +1,12 @@
+FROM joyzoursky/python-chromedriver:3.9-alpine-selenium
+RUN apk add bash
+RUN apk add --virtual build-deps gcc python3-dev musl-dev
+RUN apk add --no-cache mariadb-dev
+RUN apk add tmux
+RUN pip3 install --upgrade pip
+RUN pip3 install dataset
+RUN pip3 install mysqlclient
+
+#RUN pip3 install selenium-wire
+CMD ["python3"]
+

+ 22 - 0
docker/gat/Dockerfile

@@ -0,0 +1,22 @@
+FROM node:16
+
+
+COPY package.json .
+
+RUN yarn global add gatsby-cli
+
+RUN yarn install
+
+#COPY gatsby-config.js .
+
+# Optionally, copy your .env file to the container filesystem
+#COPY .env .
+#WORKDIR /usr/src/app
+WORKDIR /workspace
+
+EXPOSE 8000
+CMD ["gatsby", "develop", "--verbose"]
+#CMD ["/bin/bash"]
+
+#CMD ["gatsby", "develop", "-H", "0.0.0.0","--verbose"]
+ 

+ 29 - 0
docker/test/Dockerfile

@@ -0,0 +1,29 @@
+#FROM node:16.6
+FROM node:17
+#FROM node:17-alpine
+#RUN apk add nss
+#RUN apk add git
+RUN apt update
+RUN apt-get install --yes libnss3
+RUN apt-get install --yes libatk1.0
+RUN apt-get install --yes libatk-bridge2.0
+RUN apt-get install --yes libcups2
+RUN apt-get install --yes libdrm2
+RUN apt-get install --yes libgtk3.0
+RUN apt-get install --yes libgbm1
+RUN apt-get install --yes libasound2
+RUN apt-get install --yes libexif12
+#RUN sed -i "s/puppeteer.launch();/puppeteer.launch({args: [\"--no-sandbox\"]});/g" node_modules/svgexport/render.js
+#RUN npm uninstall electron
+#RUN npm install electron
+RUN git clone https://github.com/takumade/NullboardX.git
+#RUN ls
+RUN sed -i '7s/.*/"start": "electron . --no-sandbox -a"/' /NullboardX/package.json
+RUN cd NullboardX ; npm install
+#RUN npm install
+COPY . .
+WORKDIR /NullboardX
+EXPOSE 3000
+ENV QTWEBENGINE_DISABLE_SANDBOX 1
+ENV DISPLAY=:0.0
+CMD ["npm","run","start","--no-sandbox"]

+ 162 - 0
hhh/SEO/fast_1888.py

@@ -0,0 +1,162 @@
+#import redis
+import time
+import traceback
+#import json
+from selenium import webdriver
+from selenium.webdriver.common.desired_capabilities import DesiredCapabilities
+import time
+import os
+import urllib.parse
+from selenium.webdriver.support.ui import WebDriverWait
+from selenium.webdriver.common.by import By
+from selenium.webdriver.support import expected_conditions as EC
+
+import codecs
+import random
+import requests
+import time
+import sys
+import docker
+import codecs
+import random
+import os
+import time
+
+
+driver=None
+headers = {
+        "Authorization": "Bearer " + "t35vhZtWNgvDNWHc3DJh0OKll3mcB9GvC8K2EAkBug2",
+        "Content-Type": "application/x-www-form-urlencoded"
+}
+
+
+
+def send_msg(kw):
+    params = {"message": "處理關鍵字: "+kw}  
+    r = requests.post("https://notify-api.line.me/api/notify",headers=headers, params=params)
+
+
+def empty_query(q):
+    global driver
+    googleurl='https://www.google.com/search?q='+urllib.parse.quote(q)
+    driver.get(googleurl)
+    time.sleep(3)
+
+
+def process_query(qs):
+    q=qs[0]
+    domain=qs[2]
+    cnt=qs[1]
+    global driver
+    googleurl='https://www.google.com/search?q='+urllib.parse.quote(q)
+    driver.get(googleurl)
+    time.sleep(3)
+    if cnt > 0:
+        for i in range(cnt):
+            elmt=driver.find_element_by_xpath("//a[@id='pnnext']")
+            webdriver.ActionChains(driver).move_to_element(elmt).perform()
+            webdriver.ActionChains(driver).move_to_element(elmt).click().perform()
+    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:
+#            if 'hhh.com.tw' in href:
+#            if 'ai.choozmo.com' in href:
+            if domain in href:
+#            if 'searchome.net' in href:
+                webdriver.ActionChains(driver).move_to_element(elmt).perform()
+                webdriver.ActionChains(driver).move_to_element(elmt).click().perform()
+                break
+
+
+def re_get_webdriver():
+    global driver
+    result=[]
+#    client = docker.from_env()
+#    ls=client.containers.list()
+#    print(ls)
+#    for l in ls:
+#        if 'p17777' in l.name:
+#            ls[0].restart()
+
+#    time.sleep(4)
+    if driver is not None:
+        print('closing....')
+        driver.quit()
+#    options = webdriver.EdgeOptions()
+    try:
+        driver = webdriver.Remote(
+            command_executor='http://127.0.0.1:18888/wd/hub')
+        driver.set_window_size(1400,1000)
+        return
+    except:
+        import traceback
+        traceback.print_exc()
+        driver=None
+        return None
+    driver=None
+
+def run_once(url):
+    global driver
+    i=random.randint(0,15)
+    if i==0 or driver is None:
+#    if True:
+        re_get_webdriver()
+        time.sleep(3)
+    if driver is None:
+        return
+    try:
+        driver.execute_script('window.open("'+url+'","_blank");')
+        driver.execute_script("window.scrollTo(0, window.scrollY + 400)")
+        time.sleep(0.5)
+    except:
+        print('exception')
+
+
+client = docker.from_env()
+ls=client.containers.list()
+print(ls)
+for l in ls:
+    if 'p18888' in l.name:
+        ls[0].restart()
+time.sleep(4)
+
+
+fpath=__file__
+elmts=fpath.split('\\')
+fpath=fpath.replace(elmts[-1],'urls.csv')
+
+os.system('docker restart p18888')
+
+
+
+
+print(fpath)
+
+lst=[]
+
+fr=codecs.open(fpath,'r','utf-8')
+lines=fr.readlines()
+for l in lines:
+    elmts=l.split(',')
+    lst.append('https://www.hhh.com.tw'+elmts[0])
+fr.close()
+
+#lst=['https://www.hhh.com.tw/columns/detail/3427/index.php']
+    #for i in range(20):
+while True:
+    l=random.choice(lst)
+    print(l)
+#    driver.get(l)
+    run_once(l)
+#    time.sleep(2)
+
+

+ 165 - 0
hhh/SEO/fast_1999.py

@@ -0,0 +1,165 @@
+#import redis
+import time
+import traceback
+#import json
+from selenium import webdriver
+from selenium.webdriver.common.desired_capabilities import DesiredCapabilities
+import time
+import os
+import urllib.parse
+from selenium.webdriver.support.ui import WebDriverWait
+from selenium.webdriver.common.by import By
+from selenium.webdriver.support import expected_conditions as EC
+
+import codecs
+import random
+import requests
+import time
+import sys
+import docker
+import codecs
+import random
+import os
+import time
+
+
+driver=None
+headers = {
+        "Authorization": "Bearer " + "t35vhZtWNgvDNWHc3DJh0OKll3mcB9GvC8K2EAkBug2",
+        "Content-Type": "application/x-www-form-urlencoded"
+}
+
+
+
+def send_msg(kw):
+    params = {"message": "處理關鍵字: "+kw}  
+    r = requests.post("https://notify-api.line.me/api/notify",headers=headers, params=params)
+
+
+def empty_query(q):
+    global driver
+    googleurl='https://www.google.com/search?q='+urllib.parse.quote(q)
+    driver.get(googleurl)
+    time.sleep(3)
+
+
+def process_query(qs):
+    q=qs[0]
+    domain=qs[2]
+    cnt=qs[1]
+    global driver
+    googleurl='https://www.google.com/search?q='+urllib.parse.quote(q)
+    driver.get(googleurl)
+    time.sleep(3)
+    if cnt > 0:
+        for i in range(cnt):
+            elmt=driver.find_element_by_xpath("//a[@id='pnnext']")
+            webdriver.ActionChains(driver).move_to_element(elmt).perform()
+            webdriver.ActionChains(driver).move_to_element(elmt).click().perform()
+    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:
+#            if 'hhh.com.tw' in href:
+#            if 'ai.choozmo.com' in href:
+            if domain in href:
+#            if 'searchome.net' in href:
+                webdriver.ActionChains(driver).move_to_element(elmt).perform()
+                webdriver.ActionChains(driver).move_to_element(elmt).click().perform()
+                break
+
+
+def re_get_webdriver():
+    global driver
+    global portnum
+    result=[]
+#    client = docker.from_env()
+#    ls=client.containers.list()
+#    print(ls)
+#    for l in ls:
+#        if 'p17777' in l.name:
+#            ls[0].restart()
+
+#    time.sleep(4)
+    if driver is not None:
+        print('closing....')
+        driver.quit()
+#    options = webdriver.EdgeOptions()
+    try:
+        driver = webdriver.Remote(
+            command_executor='http://127.0.0.1:'+str(portnum)+'/wd/hub')
+        driver.set_window_size(1400,1000)
+        return
+    except:
+        import traceback
+        traceback.print_exc()
+        driver=None
+        return None
+    driver=None
+
+def run_once(url):
+    global driver
+    i=random.randint(0,15)
+    if i==0 or driver is None:
+#    if True:
+        re_get_webdriver()
+        time.sleep(3)
+    if driver is None:
+        return
+    try:
+        driver.execute_script('window.open("'+url+'","_blank");')
+        driver.execute_script("window.scrollTo(0, window.scrollY + 400)")
+        time.sleep(0.5)
+    except:
+        print('exception')
+
+
+#client = docker.from_env()
+#ls=client.containers.list()
+#print(ls)
+#for l in ls:
+#    if 'p18888' in l.name:
+#        ls[0].restart()
+#time.sleep(4)
+
+portnum=sys.argv[1]
+
+fpath=__file__
+elmts=fpath.split('\\')
+fpath=fpath.replace(elmts[-1],'urls.csv')
+
+os.system('docker restart p'+str(portnum))
+time.sleep(4)
+
+
+
+
+print(fpath)
+
+lst=[]
+
+fr=codecs.open(fpath,'r','utf-8')
+lines=fr.readlines()
+for l in lines:
+    elmts=l.split(',')
+    lst.append('https://www.hhh.com.tw'+elmts[0])
+fr.close()
+
+#lst=['https://www.hhh.com.tw/columns/detail/3427/index.php']
+    #for i in range(20):
+while True:
+    l=random.choice(lst)
+    print(l)
+#    driver.get(l)
+    run_once(l)
+#    time.sleep(2)
+
+

+ 175 - 0
hhh/SEO/fast_9222.py

@@ -0,0 +1,175 @@
+#import redis
+import time
+import traceback
+#import json
+from selenium import webdriver
+from selenium.webdriver.common.desired_capabilities import DesiredCapabilities
+import time
+import os
+import urllib.parse
+from selenium.webdriver.support.ui import WebDriverWait
+from selenium.webdriver.common.by import By
+from selenium.webdriver.support import expected_conditions as EC
+import dataset
+import codecs
+import random
+import requests
+import time
+import sys
+#import docker
+import codecs
+import random
+import os
+import time
+
+
+driver=None
+headers = {
+        "Authorization": "Bearer " + "t35vhZtWNgvDNWHc3DJh0OKll3mcB9GvC8K2EAkBug2",
+        "Content-Type": "application/x-www-form-urlencoded"
+}
+
+
+
+def send_msg(kw):
+    params = {"message": "處理關鍵字: "+kw}  
+    r = requests.post("https://notify-api.line.me/api/notify",headers=headers, params=params)
+
+
+def empty_query(q):
+    global driver
+    googleurl='https://www.google.com/search?q='+urllib.parse.quote(q)
+    driver.get(googleurl)
+    time.sleep(3)
+
+
+def process_query(qs):
+    q=qs[0]
+    domain=qs[2]
+    cnt=qs[1]
+    global driver
+    googleurl='https://www.google.com/search?q='+urllib.parse.quote(q)
+    driver.get(googleurl)
+    time.sleep(3)
+    if cnt > 0:
+        for i in range(cnt):
+            elmt=driver.find_element_by_xpath("//a[@id='pnnext']")
+            webdriver.ActionChains(driver).move_to_element(elmt).perform()
+            webdriver.ActionChains(driver).move_to_element(elmt).click().perform()
+    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:
+#            if 'hhh.com.tw' in href:
+#            if 'ai.choozmo.com' in href:
+            if domain in href:
+#            if 'searchome.net' in href:
+                webdriver.ActionChains(driver).move_to_element(elmt).perform()
+                webdriver.ActionChains(driver).move_to_element(elmt).click().perform()
+                break
+
+
+def re_get_webdriver():
+    global driver
+    result=[]
+#    client = docker.from_env()
+#    ls=client.containers.list()
+#    print(ls)
+#    for l in ls:
+#        if 'p17777' in l.name:
+#            ls[0].restart()
+
+#    time.sleep(4)
+    if driver is not None:
+        print('closing....')
+        driver.quit()
+#    options = webdriver.EdgeOptions()
+    try:
+#        driver = webdriver.Remote(
+#            command_executor='http://127.0.0.1:4444/wd/hub')
+
+        chrome_options = webdriver.ChromeOptions()
+#        chrome_options.add_argument('--proxy-server=host.docker.internal:'+str(proxyport))  # Specify your Kubernetes service-name here
+        chrome_options.add_argument('--ignore-certificate-errors')
+        chrome_options.add_argument("--no-sandbox")
+        chrome_options.add_argument("--headless")
+        chrome_options.add_argument("--disable-dev-shm-usage")
+        driver = webdriver.Chrome(options=chrome_options)
+#        command_executor='http://127.0.0.1:4444/wd/hub',
+#            desired_capabilities=chrome_options.to_capabilities()
+#        )
+        driver.set_window_size(1400,1000)
+        return driver
+    except:
+        import traceback
+        traceback.print_exc()
+        driver=None
+        return None
+    driver=None
+
+def run_once(url):
+    global driver
+    i=random.randint(0,22)
+    if i==0 or driver is None:
+#    if True:
+        time.sleep(6)
+        re_get_webdriver()
+        time.sleep(1)
+    if driver is None:
+        return
+    try:
+        driver.execute_script('window.open("'+url+'","_blank");')
+        driver.execute_script("window.scrollTo(0, window.scrollY + 400)")
+        time.sleep(0.3)
+    except:
+        print('exception')
+
+
+#client = docker.from_env()
+#ls=client.containers.list()
+#print(ls)
+#for l in ls:
+#    if 'p4444' in l.name:
+#        ls[0].restart()
+#time.sleep(4)
+
+
+fpath=__file__
+#elmts=fpath.split('\\')
+#fpath=fpath.replace(elmts[-1],'urls.csv')
+
+os.system('docker restart p9222')
+
+
+
+
+print(fpath)
+
+
+lst=[]
+db = dataset.connect('mysql://choozmo:pAssw0rd@db.ptt.cx:3306/seo?charset=utf8mb4')
+
+cursor=db.query('SELECT * FROM columnids order by rand()')
+for c in cursor:
+    lst.append('https://www.hhh.com.tw/columns/detail/'+str(c['cid'])+'/index.php')
+
+
+#lst=['https://www.hhh.com.tw/columns/detail/3427/index.php']
+    #for i in range(20):
+while True:
+    l=random.choice(lst)
+    print(l)
+#    driver.get(l)
+    run_once(l)
+#    time.sleep(5)
+#    time.sleep(2)
+
+

+ 97 - 0
hhh/SEO/local_1777.py

@@ -0,0 +1,97 @@
+#import redis
+import time
+import traceback
+#import json
+from selenium import webdriver
+from selenium.webdriver.common.desired_capabilities import DesiredCapabilities
+import time
+import os
+from selenium.webdriver.support.ui import WebDriverWait
+from selenium.webdriver.common.by import By
+from selenium.webdriver.support import expected_conditions as EC
+import dataset
+
+import json
+import random
+import time
+import sys
+import codecs
+import random
+import os
+import time
+
+
+driver=None
+
+
+def re_get_webdriver():
+    global driver
+    result=[]
+#    client = docker.from_env()
+#    ls=client.containers.list()
+#    print(ls)
+#    for l in ls:
+#        if 'p17777' in l.name:
+#            ls[0].restart()
+
+#    time.sleep(4)
+    if driver is not None:
+        print('closing....')
+        driver.quit()
+#    options = webdriver.EdgeOptions()
+    try:
+
+        options = webdriver.ChromeOptions()
+        options.add_argument("--no-sandbox")
+        options.add_argument("--disable-dev-shm-usage")
+        options.add_argument("--headless")
+
+        driver = webdriver.Chrome(options=options)
+#        desired_capabilities=options.to_capabilities())
+
+        driver.set_window_size(1400,1000)
+        return
+    except:
+        import traceback
+        traceback.print_exc()
+        driver=None
+        return None
+    driver=None
+
+def run_once(url):
+    global driver
+    i=random.randint(0,15)
+    if i==0 or driver is None:
+#    if True:
+        re_get_webdriver()
+        time.sleep(3)
+    if driver is None:
+        return
+    try:
+        driver.execute_script('window.open("'+url+'","_blank");')
+        driver.execute_script("window.scrollTo(0, window.scrollY + 400)")
+        time.sleep(0.5)
+    except:
+        print('exception')
+
+
+
+lst=[]
+
+
+db = dataset.connect('mysql://choozmo:pAssw0rd@db.ptt.cx:3306/seo?charset=utf8mb4')
+
+cursor=db.query('SELECT * FROM columnids order by rand()')
+for c in cursor:
+    lst.append('https://www.hhh.com.tw/columns/detail/'+str(c['cid'])+'/index.php')
+
+
+
+#lst=['https://www.hhh.com.tw/columns/detail/3427/index.php']
+    #for i in range(20):
+while True:
+    l=random.choice(lst)
+    print(l)
+    run_once(l)
+
+

+ 162 - 0
hhh/SEO/win7.py

@@ -0,0 +1,162 @@
+#import redis
+import time
+import traceback
+#import json
+from selenium import webdriver
+from selenium.webdriver.common.desired_capabilities import DesiredCapabilities
+import time
+import os
+import urllib.parse
+from selenium.webdriver.support.ui import WebDriverWait
+from selenium.webdriver.common.by import By
+from selenium.webdriver.support import expected_conditions as EC
+
+import codecs
+import random
+import requests
+import time
+import sys
+import docker
+import codecs
+import random
+import os
+import time
+
+
+driver=None
+headers = {
+        "Authorization": "Bearer " + "t35vhZtWNgvDNWHc3DJh0OKll3mcB9GvC8K2EAkBug2",
+        "Content-Type": "application/x-www-form-urlencoded"
+}
+
+
+
+def send_msg(kw):
+    params = {"message": "處理關鍵字: "+kw}  
+    r = requests.post("https://notify-api.line.me/api/notify",headers=headers, params=params)
+
+
+def empty_query(q):
+    global driver
+    googleurl='https://www.google.com/search?q='+urllib.parse.quote(q)
+    driver.get(googleurl)
+    time.sleep(3)
+
+
+def process_query(qs):
+    q=qs[0]
+    domain=qs[2]
+    cnt=qs[1]
+    global driver
+    googleurl='https://www.google.com/search?q='+urllib.parse.quote(q)
+    driver.get(googleurl)
+    time.sleep(3)
+    if cnt > 0:
+        for i in range(cnt):
+            elmt=driver.find_element_by_xpath("//a[@id='pnnext']")
+            webdriver.ActionChains(driver).move_to_element(elmt).perform()
+            webdriver.ActionChains(driver).move_to_element(elmt).click().perform()
+    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:
+#            if 'hhh.com.tw' in href:
+#            if 'ai.choozmo.com' in href:
+            if domain in href:
+#            if 'searchome.net' in href:
+                webdriver.ActionChains(driver).move_to_element(elmt).perform()
+                webdriver.ActionChains(driver).move_to_element(elmt).click().perform()
+                break
+
+
+def re_get_webdriver():
+    global driver
+    result=[]
+#    client = docker.from_env()
+#    ls=client.containers.list()
+#    print(ls)
+#    for l in ls:
+#        if 'p17777' in l.name:
+#            ls[0].restart()
+
+#    time.sleep(4)
+    if driver is not None:
+        print('closing....')
+        driver.quit()
+#    options = webdriver.EdgeOptions()
+    try:
+        driver = webdriver.Remote(
+            command_executor='http://192.168.99.100:17777/wd/hub')
+        driver.set_window_size(1400,1000)
+        return
+    except:
+        import traceback
+        traceback.print_exc()
+        driver=None
+        return None
+    driver=None
+
+def run_once(url):
+    global driver
+    i=random.randint(0,15)
+    if i==0 or driver is None:
+#    if True:
+        re_get_webdriver()
+        time.sleep(3)
+    if driver is None:
+        return
+    try:
+        driver.execute_script('window.open("'+url+'","_blank");')
+        driver.execute_script("window.scrollTo(0, window.scrollY + 400)")
+        time.sleep(0.5)
+    except:
+        print('exception')
+
+
+client = docker.from_env()
+ls=client.containers.list()
+print(ls)
+for l in ls:
+    if 'p17777' in l.name:
+        ls[0].restart()
+time.sleep(4)
+
+
+fpath=__file__
+elmts=fpath.split('\\')
+fpath=fpath.replace(elmts[-1],'urls.csv')
+
+os.system('docker restart p17777')
+
+
+
+
+print(fpath)
+
+lst=[]
+
+fr=codecs.open(fpath,'r','utf-8')
+lines=fr.readlines()
+for l in lines:
+    elmts=l.split(',')
+    lst.append('https://www.hhh.com.tw'+elmts[0])
+fr.close()
+
+#lst=['https://www.hhh.com.tw/columns/detail/3427/index.php']
+    #for i in range(20):
+while True:
+    l=random.choice(lst)
+    print(l)
+#    driver.get(l)
+    run_once(l)
+#    time.sleep(2)
+
+