1. 首页
  2. 数据库
  3. 其它
  4. Python中获取网页状态码的两个方法

Python中获取网页状态码的两个方法

上传者: 2020-12-31 18:04:25上传 PDF文件 19.03KB 热度 7次
第一种是用urllib模块,下面是例示代码: 复制代码 代码如下: import urllib status=urllib.urlopen(“//www.jb51.net”).code print status 第二章是用requests模块,下面是例示代码: 复制代码 代码如下: import requests code=requests.get(“//www.jb51.net”).status_code print code 您可能感兴趣的文章:python判断设备是否联网的方法
用户评论