python网络爬虫 - 设定重试次数内反复抓取

Posted Master HaKu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python网络爬虫 - 设定重试次数内反复抓取相关的知识,希望对你有一定的参考价值。

import urllib.request

def download(url, num_retries=2):
    print(Downloading:, url)
    try:
        html = urllib.request.urlopen(url).read()
    except urllib.URLError as e:
        print(Download error: % e.reason)
        html = None
        if num_retries > 0:
            if hasattr(e, code) and 500 <= e.code < 600:
                # recursively retry 5xx HTTP errors
                return download(url, num_retries-1)
    return html
    
url = http://www.google.com
print(download(url, 3))

 

以上是关于python网络爬虫 - 设定重试次数内反复抓取的主要内容,如果未能解决你的问题,请参考以下文章

请教一个问题,怎么提高 python 爬虫的爬取效率

Python网络蜘蛛:基础 - 代理的基本原理

Python爬虫使用浏览器的cookies:browsercookie

python爬虫 ProxyHandler处理器

Python爬虫-02:HTTPS请求与响应,以及抓包工具Fiddler的使用

写python爬虫时,想抓图片的原图?