Questions tagged «urllib2»

urllib2是一个内置的python 2模块,该模块定义了有助于URL操作的函数和类。它显然不能令人满意,并且在python 3和第三方库中已被替换。



3
在python中捕获特定的HTTP错误
我想捕获一个特定的http错误,而不是整个家庭中的任何一个..我想做的是- import urllib2 try: urllib2.urlopen("some url") except urllib2.HTTPError: <whatever> 但是我最终捕获的是任何一种HTTP错误,但是我只想在指定的网页不存在的情况下捕获!可能是HTTP错误404 ..但我不知道如何指定仅捕获错误404并让系统为其他事件运行默认处理程序。
70 python  http  urllib2  urllib 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.