Python爬虫4-URLError与HTTPError
程序员文章站
2022-12-24 12:48:10
GitHub代码练习地址:URLError:https://github.com/Neo-ML/PythonPractice/blob/master/SpiderPrac06_URLError.py HTTPError:https://github.com/Neo-ML/PythonPractice ......
github代码练习地址:urlerror:https://github.com/neo-ml/pythonpractice/blob/master/spiderprac06_urlerror.py
httperror:https://github.com/neo-ml/pythonpractice/blob/master/spiderprac07_httperror.py
模块:urllib.error
一、urlerror
产生的原因:
没网
服务器链接失败
找不到指定服务器
是oserror的子类
二、httperror
是urlerror的一个子类
三、urlerror与httperror的区别:
httperror是对应的http请求的返回码错误, 如果返回错误码是400以上的,则引发httperror
urlerror对应的一般是网络出现问题,包括url问题
隶属关系: oserror-urlerror-httperror
所有用request打开url的方式都要放进try except语句