Python爬虫如何设置异常处理

2024年11月20日 06:15
有1个网友回答
网友(1):

发生异常时记录下来

urls = [
    #...
]

errors = []

for url in urls:
    try:
        # 请求URL 保存内容
    except:
        # 发生异常时, 记录 跳出
        errors.append(url)
        continue