python使用urllib.request抓取网页时的错误处理代码
""" 作者:皮蛋编程(https://www.pidancode.com) 创建日期:2022/3/17 修改日期:2022/3/17 功能描述:python使用urllib.request抓取网页时的错误处理代码 """ from urllib import request, error try: url_file = request.urlopen('https://www.pidancode.com') except error.HTTPError as exc: if exc.code == 404: print("皮蛋编程提醒您:没有找到网页") else: print("皮蛋编程提醒您:HTTP 请求失败,错误信息如下: %d (%s)" % (exc.code, exc.reason)) except error.URLError as exc: print("皮蛋编程提醒您:发生错误:", exc.reason)
以上代码在Python3.9环境下测试通过。
相关文章