Python 学习(7)---网页访问异常处理

部署运行你感兴趣的模型镜像

利用Python进行网页访问的时候,难免会遇到访问出错的时候,这时候就需要进行异常处理了,否则在进行网页爬虫的时候会时不时的出现访问失败而导致程序终止。下面是常用的两种异常处理方法:

'''
处理网页访问异常的方法:
'''
print("======================方法一============================")
from urllib.request import Request, urlopen
from urllib.error import URLError, HTTPError

someurl = "http://5555666.com"
req = Request(someurl)
try:
    response = urlopen(req)
except HTTPError as e:     # HTTPError 是URLError的子类,需要写在前面,否则会被覆盖
    print('The server couldn\'t fulfill the request.')
    print('Error code: ', e.code)
except URLError as e:
    print('We failed to reach a server.')
    print('Reason: ', e.reason)
else:
    print("done")
    # everything is fine


print("========================方法二==========================")
from urllib.request import Request, urlopen
from urllib.error import URLError, HTTPError

req = Request(someurl)
try:
    response = urlopen(req)
except URLError as e:
    if hasattr(e, 'reason'):
        print('We failed to reach a server.')
        print('Reason: ', e.reason)
    elif hasattr(e, 'code'):
        print('The server couldn\'t fulfill the request.')
        print('Error code: ', e.code)
else:
    print("over")
    # everything is fine


您可能感兴趣的与本文相关的镜像

GPT-SoVITS

GPT-SoVITS

AI应用

GPT-SoVITS 是一个开源的文本到语音(TTS)和语音转换模型,它结合了 GPT 的生成能力和 SoVITS 的语音转换技术。该项目以其强大的声音克隆能力而闻名,仅需少量语音样本(如5秒)即可实现高质量的即时语音合成,也可通过更长的音频(如1分钟)进行微调以获得更逼真的效果

评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值