检查网站可用性的Python代码

2018-07-20    来源:open-open

容器云强势上线!快速搭建集群,上万Linux镜像随意使用
#!/usr/bin/env python
# coding=utf-8
import socket
 
s = socket.socket(socket.AF_INET,socket.SOCK_STREAM)
s.connect(('www.sina.com.cn',80))
 
s.send('GET / HTTP/1.1\r\nHost:www.open-open.com\r\nConnection:close\r\n\r\n')
 
buffer = []
 
while True:
    d=s.recv(1024)
    if d:
        buffer.append(d)
    else:
        break
data = ''.join(buffer)
s.close()
header, html = data.split('\r\n\r\n', 1)
#print header
header_itesm = header.split('\r')
#print header_itesm[0]
header_stage = header_itesm[0].split(' ')
print header_stage[1]
 
website_stage = int(header_stage[1])
 
if website_stage != 200:
    print "ERROR"
    #发邮件
else:
    pass

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点!
本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。

上一篇:php计算整个mysql数据库的大小

下一篇:将linux运行时间格式成易读格式的php代码