我刚开始编程Python。我想创建一个机器人。这是我的代码。
一切正常,直到while RUNNING == True:
。之后输入配置文件并显示错误。其他信息,所以我可以使用Firefox我需要下载geckodriver!任何帮助或建议在哪里看将不胜感激。
import random, time, requests
from selenium import webdriver
from selenium.webdriver.common.proxy import *
from bs4 import BeautifulSoup
import selenium.webdriver.chrome.service
import webbrowser
USER_AGENT_FILE = './user_agent.txt'
RUNNING = True
def LoadUserAgents(uafile=USER_AGENT_FILE):
uas = []
with open(uafile, 'rb') as uaf:
for ua in uaf.readlines():
if ua:
uas.append(ua.strip() [1:-1-1])
random.shuffle(uas)
return uas
uas = LoadUserAgents()
while RUNNING == True:
profile = webdriver.FirefoxProfile()
profile.set_preference('general.usragent.override', random.choice(uas))
driver = webdriver.Firefox(firefox_profile=profile)
driver.get('http://whatmyua.com')
input('Press enter to continue')
driver.quit()
答案 0 :(得分:1)
您正在以二进制模式打开文件;你想要文本模式,所以使用open(uafile, 'r')
。
此外,还有一些未经请求的代码审查:
while RUNNING == True:
与:
相同 while RUNNING: