编写网站脚本打开

2024-04-24 06:47:40 发布

您现在位置:Python中文网/ 问答频道 /正文

我使用python脚本接收一个包含一堆网站url的文件,并在新的选项卡中打开它们。但是,我在打开第一个网站时收到一条错误消息:这是我得到的:

0:41: execution error: "https://www.pandora.com/ " doesn’t understand the “open location” message. (-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组成,它们各自的行。你知道吗


Tags: 文件import脚本消息url网站my错误
1条回答
网友
1楼 · 发布于 2024-04-24 06:47:40

我试过运行你的代码,它可以在我的机器上用python2.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


希望这有帮助!你知道吗

相关问题 更多 >