欢迎来到代码驿站!

Python代码

当前位置:首页 > 软件编程 > Python代码

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

时间:2020-10-18 13:57:05|栏目:Python代码|点击:

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

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

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

上一篇:python openvc 裁剪、剪切图片 提取图片的行和列

栏    目:Python代码

下一篇:Python 代码性能优化技巧分享

本文标题:python中使用urllib2获取http请求状态码的代码例子

本文地址:http://www.codeinn.net/misctech/13251.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有