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

软件发布|下载排行|最新软件

当前位置:首页IT学院IT技术

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

  2021-03-19 我要评论
想了解python中使用urllib2获取http请求状态码的代码例子的相关内容吗,在本文为您仔细讲解python获取http请求状态码的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:python,urllib2,获取http请求状态码,下面大家一起来学习吧。

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

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

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

猜您喜欢

Copyright 2022 版权所有 软件发布 访问手机版

声明:所有软件和文章来自软件开发商或者作者 如有异议 请与本站联系 联系我们