我正在使用python脚本接收包含一堆网站网址的文件,并在新标签页中打开所有这些网址。但是,我在打开第一个网站时收到错误消息:这就是我得到的:
0:41:执行错误:“https://www.pandora.com/ “不理解”开放地点“的消息。( - 1708)
到目前为止,我的脚本看起来像这样:
import os
import webbrowser
websites = []
with open("websites.txt", "r+") as my_file:
websites.append(my_file.readline())
for x in websites:
try:
webbrowser.open(x)
except:
print (x + " does not work.")
我的文件由各自的URL组成。
答案 0 :(得分:1)
我尝试运行你的代码,它可以在我的机器上运行python 2.7.9
尝试打开文件时可能是字符编码问题
这是我的建议,并进行了以下编辑:
import webbrowser
with open("websites.txt", "r+") as sites:
sites = sites.readlines() # readlines returns a list of all the lines in your file, this makes code more concise
# In addition we can use the variable 'sites' to hold the list returned to us by the file object 'sites.readlines()'
print sites # here we send the output of the list to the shell to make sure it contains the right information
for url in sites:
webbrowser.open_new_tab( url.encode('utf-8') ) # this is here just in-case, to encode characters that the webbrowser module can interpret
# sometimes special characters like '\' or '/' can cause issues for us unless we encode/decode them or make them raw strings
希望这有帮助!