如何将url文件解析成Python列表?

时间:2017-04-24 18:28:53

标签: python file

我对Python 3非常陌生,而且编码一般,所以请放轻松。

我想输入一个文本文件中的网址列表。 我的文本文件的内容示例

http://www.sslproxies.org/
http://www.xroxy.com/proxy-type-Anonymous.html
https://kingproxies.com/

如何将列表批量导入我朋友创建的代理搜索程序? 这就是我到目前为止所拥有的

scrape_list = list(set(open('URList.txt', 'rb').read().splitlines()))
for url in scrape_list:
          os.subprocess('hisprogram.exe --addurl ' + url)

但这似乎不起作用,如果有人可以帮我向我解释,我会很高兴。

非常感谢。

1 个答案:

答案 0 :(得分:0)

你非常接近解决方案。只需使用split()代替splitlines,就不需要列表设置来电:

>>> with open('URList.txt') as f:
        scrape_list = f.read().split()

>>> scrape_list
['http://www.sslproxies.org/', 'http://www.xroxy.com/proxy-type-Anonymous.html', 'https://kingproxies.com/']