Python 获取url的连通性
管理多个站点列表的时候,由于很多站点都绑定了多个域名,以前想要查看每个网址的连通性,就需要复制网址到浏览器中打开,为了方便快捷判断,现通过Python的requests模块,对网址进行访问,通过返回的状态大致判定所给链接是否可以正常访问。代码如下:
#-*- coding:utf-8 -*-
import requests
url = "http://www.example.com/"
headers = {"User-Agent" : "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.71 Safari/537.36 Edg/97.0.1072.55"}
try:
response= requests.get(url, headers=headers, timeout=5).status_code
print(response)
if response == 200:
print('可打开')
else:
print(response)
except Exception as e:
print(e)