手机
当前位置:查字典教程网 >脚本专栏 >python >python中使用urllib2获取http请求状态码的代码例子
python中使用urllib2获取http请求状态码的代码例子
摘要:采集内容常需要得到网页返回的验证码做进一步处理下面代码是用python写的用来获取网页http状态码的脚本#!/usr/bin/python...

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

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

#!/usr/bin/python # -*- coding: utf-8 -*- #encoding=utf-8 #Filename:states_code.py import urllib2 url = 'http://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中使用urllib2获取http请求状态码的代码例子】相关文章:

Python 随机生成中文验证码的实例代码

python快速排序代码实例

Python修改Excel数据的实例代码

python使用cookielib库示例分享

python中文乱码的解决方法

python使用PyFetion来发送短信的例子

Python使用Socket(Https)Post登录百度的实现代码

python获取豆瓣电影简介代码分享

python3使用urllib示例取googletranslate(谷歌翻译)

python判断端口是否打开的实现代码

精品推荐
分类导航