我是靠谱客的博主 靓丽万宝路,这篇文章主要介绍python中使用urllib2获取http请求状态码的代码例子,现在分享给大家,希望可以做个参考。

采集内容常需要得到网页返回的验证码做进一步处理

下面代码是用python写的用来获取网页http状态码的脚本

#!/usr/bin/python
# -*- coding: utf-8 -*-
#encoding=utf-8
#Filename:states_code.py
 
import urllib2
 
url = 'http://www.uoften.com/'
response = None
try:
  response = urllib2.urlopen(url,timeout=5)
except urllib2.URLError as e:
  if hasattr(e, 'code'):
    print 'Error code:',e.code
  elif hasattr(e, 'reason'):
    print 'Reason:',e.reason
finally:
  if response:
    response.close()

最后

以上就是靓丽万宝路最近收集整理的关于python中使用urllib2获取http请求状态码的代码例子的全部内容,更多相关python中使用urllib2获取http请求状态码内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(112)

评论列表共有 0 条评论

立即
投稿
返回
顶部