pythonスクレイピングテストでSeleniumでサーバー上で動かしています。
最初の3、4回目くらいは処理に成功して値をとってこれるのですが、それ以上すると504エラーになります。
また何日か後にやると正常に稼働し、その後3,4回後には504というループです。
どのような原因が考えられるでしょうか?
ソースコード
・サーバーのスペックはCONOHA VPSの4GBです。
・pythonは2.7
python
1#!/usr/bin/env python 2# -*- coding: utf-8 -*- 3 4import csv 5from datetime import datetime 6from selenium import webdriver 7from selenium.webdriver.common.keys import Keys 8from selenium.webdriver.common.by import By 9from selenium.webdriver.support.ui import WebDriverWait 10from selenium.webdriver.support import expected_conditions as EC 11from selenium.webdriver.chrome.options import Options 12from selenium.common.exceptions import TimeoutException 13import cgi # CGIモジュールのインポート 14import time 15import cgitb 16import sys 17import os 18 19 20print("Content-Type: text/plain;charset=utf-8") #HTMLを出力するために必要 21print("") #HTMLを出力するために必要 22options = Options() 23options.add_argument('--headless') 24options.add_argument('--no-sandbox') 25driver = webdriver.Chrome(executable_path='/usr/local/bin/chromedriver',options=options) 26 27# 要素が見つかるまで、最大2秒間待機する 28driver.implicitly_wait(2) 29# ぺージがローディングされるまで最大10秒待つ 30driver.set_page_load_timeout(10) 31 32i = 0 33while i < 3: # 最大3回実行 34 try: 35 driver.get('https://google.com?num=100') 36 time.sleep(3) 37 38 # while True: 39 # # 標準入力の値を取得 40 array_keywords = 'python,test1,test2,test3,test4,test5' 41 42 for kw in array_keywords: 43 44 # # 入力フォームの値をクリアにする 45 driver.find_element_by_name("q").clear() 46 47 # # 入力フォームの要素を探す 48 element = driver.find_element_by_name("q") 49 50 # # 入力フォームにキーワードを入力する 51 element.send_keys(kw) 52 53 # # フォームを送信する 54 element.send_keys(Keys.RETURN) 55 56 # 最大20秒待つ 57 WebDriverWait(driver, 20).until( 58 EC.title_contains(kw) # titleタグに標準入力したキーワードが含まれるまで 59 ) 60 print(driver.title) 61 62 driver.back() 63 else: 64 print("ループ終了") 65 66 except TimeoutException as e: 67 i = i + 1 68 print(i) 69 print("例外発生") 70 print("type:" + str(type(e))) 71 continue 72 73 else: 74 break # ループを抜ける 75 driver.quit() 76 77 78else: #3回失敗した場合 79 print("3回失敗") 80 print("type:" + str(type(e))) 81 driver.quit() 82
スクレイピングの対象サイトはスクレイピング可能なサイトですか?