使用Python进行Web Scraping:WinError 10061:目标计算机被主动拒绝

时间:2015-03-26 04:34:50

标签: python beautifulsoup ip-address

我正在编写一个代码来从网站上抓取数据。代码工作正常,直到我决定隐藏我的IP地址。我收到以下错误" urlopen错误[WinError 10061]无法建立连接,因为目标计算机主动拒绝它"

我在我的机器上禁用了防火墙和防病毒软件; Tor安装并运行,互联网连接正常(显然)。 有人可以帮我找出问题所在吗?是否可以修复(我无法更改我正在从中搜索数据的网站。)?

以下是代码:

list_url= ["http://www.url.com"]
proxy_support = urllib.request.ProxyHandler({"http":"http://127.0.0.1:8118"})  
opener = urllib.request.build_opener(proxy_support)  
urllib.request.install_opener(opener)

for url in list_url:
 base_url_parts = urllib.parse.urlparse(url)
 while True:
    raw_html = urllib.request.build_opener(proxy_support).open(url).read()
...

0 个答案:

没有答案