我有網址的跳過URL,如果超時
我使用以下檢索其內容的列表:
for url in url_list:
req = urllib2.Request(url)
resp = urllib2.urlopen(req, timeout=5)
resp_page = resp.read()
print resp_page
當出現超時,該方案只是崩潰。如果有socket.timeout: timed out
,我只想閱讀下一個網址。這個怎麼做?
感謝
對於類似的問題,請參閱:http://stackoverflow.com/questions/2712524/handling-urllib2s-timeout-python – Raz