码迷,mamicode.com
首页 > Web开发 > 详细

web crawling(plus3) errors solution

时间:2017-10-02 17:18:04      阅读:273      评论:0      收藏:0      [点我收藏+]

标签:import   modified   ted   inter   man   auth   web   int   blog   

301 moved permanently

302 found

303 not modified

400 bad request

401 unauthorized

403 forbidden

404 not found

500 internal server error

501 not implementedh

URLError >HTTPError

URLError: not linked the internal server: no web connection; remote url not exit; HTTPError

******************************************

import urllib.error
import urllib.request
try:
urllib.request.urlopen("http://blog.cssdn.net")
except urllib.error.URLError as e:
if hasattr(e,"code"):
print(e.code)
if hasattr(e,"reason"):
print(e.reason)

 

web crawling(plus3) errors solution

标签:import   modified   ted   inter   man   auth   web   int   blog   

原文地址:http://www.cnblogs.com/rabbittail/p/7620347.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!