首页 > 编程 > Python > 正文

python获取网页状态码示例

2019-11-25 18:28:20
字体:
来源:转载
供稿:网友

代码很简单,只需要2行代码就可实现想要的功能,虽然很短,但确实使用,主要使用了requests库。

测试2XX, 3XX, 4XX, 5XX都能准确识别。

复制代码 代码如下:

#coding=utf-8

import requests

def getStatusCode(url):
 r = requests.get(url, allow_redirects = False)
 return r.status_code
print getStatusCode('//www.VeVB.COm/')

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表