我是使用python进行网页报废的新手,并且在开始时遇到了一些初步问题。我安装了所有正确的imnports但仍然遇到了这个错误:
ConnectionError:HTTPConnectionPool(host =' econpy.pythonanywhere.com',port = 80):使用url:/ex/001.html超出了最大重试次数(由NewConnectionError引起的错误(':失败)建立新连接:[Errno 10060]连接尝试失败,因为连接方在一段时间后没有正确响应,或者建立的连接失败,因为连接的主机未能响应',))
我在Google Chrome浏览器中检查了我的代理设置,并通过代理连接'使用HTTP 1.1被检查了。有任何想法吗 ?
这是我试图让某些东西起作用的代码: 来自lxml import html 导入请求
page = requests.get('http://econpy.pythonanywhere.com/ex/001.html')
tree = html.fromstring(page.content)
#This will create a list of buyers:
buyers = tree.xpath('//div[@title="buyer-name"]/text()')
#This will create a list of prices
prices = tree.xpath('//span[@class="item-price"]/text()')
print 'Buyers: ', buyers
print 'Prices: ', prices