1
我有一個開發代號的一部分,我從網頁抓取使用:的urlopen [錯誤-2] Python的
link = 'http://www.cmegroup.com'+div.findAll('a')[3]['href']
user_agent = 'Mozilla/5.0'
headers = {'User-Agent':user_agent}
req = urllib2.Request(link, headers=headers)
page = urllib2.urlopen(req).read()
但是我不明白的是,有時我得到一個錯誤請求鏈接。但有時候,我不知道。例如,錯誤:
urllib2.URLError: <urlopen error [Errno -2] Name or service not known>
出來了此鏈接:
http://www.cmegroup.com/trading/energy/refined-products/mini-european-naphtha-platts-cif-nwe-swap-futures_product_calendar_futures.html
當我重新運行代碼,我不會再得到該鏈接的錯誤,但是對於其他一些。 這可能是由於無線連接?