Posted in Python onNovember 03, 2014
第一种是用urllib模块,下面是例示代码:
import urllib status=urllib.urlopen("https://3water.com").code print status
第二章是用requests模块,下面是例示代码:
import requests code=requests.get("https://3water.com").status_code print code
Python中获取网页状态码的两个方法
- Author -
小渣渣声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@