私のスクリプトは、links.txt で提供される Web サイトと指定された時間間隔に従って、ネットを閲覧する Web ブラウザーとして機能します。24時間年中無休で利用できるはずです。スクリプトの目的に応じてコードを改善する方法はありますか? コードは次のとおりです。
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
import pyautogui
import time
import os.path as path
import sys
def runlinks(f):
for line in f:
key, val = line.split(";")
driver.get(key)
pyautogui.moveTo(5000, None)
time.sleep(int(val))
pyautogui.press('f15')
return()
driver = webdriver.Firefox()
pyautogui.press('f11')
count = 0
infile = "Z:\Full-Route\links.txt" #This is your links's file Path
while count < 1:
try:
with open(infile, "r") as f:
runlinks(f)
except:
pass