python爬蟲-請求超時

import urllib.request #若是網頁長時間未響應,系統斷定超時,沒法爬取 for i in range(1,100): try: response=urllib.request.urlopen("http://www.baidu.com",timeout=0.5) print(len(response.read().decode("utf-8"))) e
相關文章
相關標籤/搜索