当前位置: 移动技术网 > IT编程>脚本编程>Python > python中使用urllib2获取http请求状态码的代码例子

python中使用urllib2获取http请求状态码的代码例子

2019年03月29日  | 移动技术网IT编程  | 我要评论

喜羊羊与灰太狼小游戏全集,明日视线,百草堂书社

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

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

#!/usr/bin/python
# -*- coding: utf-8 -*-
#encoding=utf-8
#filename:states_code.py
 
import urllib2
 
url = '//www.jb51.net/'
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()

如对本文有疑问,请在下面进行留言讨论,广大热心网友会与你互动!! 点击进行留言回复

相关文章:

验证码:
移动技术网