前言
本文主要跟大家分享了关于利用python获取Ping结果的相关内容,分享出来供大家参考学习,下面话不多说,来一起看看详细的介绍吧。
示例代码:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
# -*- coding: utf-8 -*-
import subprocess
import re
def get_ping_result(ip_address):
p = subprocess.Popen([ "ping.exe" , ip_address], stdin = subprocess.PIPE, stdout = subprocess.PIPE, stderr = subprocess.PIPE, shell = True )
out = p.stdout.read().decode( 'gbk' )
reg_receive = '已接收 = \d'
match_receive = re.search(reg_receive, out)
receive_count = - 1
if match_receive:
receive_count = int (match_receive.group()[ 6 :])
if receive_count > 0 : #接受到的反馈大于0,表示网络通
reg_min_time = '最短 = \d+ms'
reg_max_time = '最长 = \d+ms'
reg_avg_time = '平均 = \d+ms'
match_min_time = re.search(reg_min_time, out)
min_time = int (match_min_time.group()[ 5 : - 2 ])
match_max_time = re.search(reg_max_time, out)
max_time = int (match_max_time.group()[ 5 : - 2 ])
match_avg_time = re.search(reg_avg_time, out)
avg_time = int (match_avg_time.group()[ 5 : - 2 ])
return [receive_count, min_time, max_time, avg_time]
else :
print ( '网络不通,目标服务器不可达!' )
return [ 0 , 9999 , 9999 , 9999 ]
if __name__ = = '__main__' :
ping_result = get_ping_result( '114.80.83.69' )
print (ping_result)
|
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作能带来一定的帮助,如果有疑问大家可以留言交流,谢谢大家对服务器之家的支持。
原文链接:http://www.cnblogs.com/hushaojun/p/7123135.html