代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
Python
】
实现服务器ping
作者:
玉洁
/ 发布于
2016/3/15
/
1054
#!/usr/bin/python #coding:utf-8 import multiprocessing import re import sys,os import commands import datetime def pinger(ip): cmd='ping -c 2 %s' % (ip.strip()) #Return a copy of the string S with leading and trailing whitespace removed. ret = commands.getoutput(cmd) #Return output (stdout or stderr) of executing cmd in a shell. loss_re=re.compile(r"received, (.*) packet loss") #Compile a regular expression pattern, returning a pattern object. packet_loss=loss_re.findall(ret)[0] #Return a list of all non-overlapping matches in the string rtt_re=re.compile(r"rtt min/avg/max/mdev = (.*) ") rtts=rtt_re.findall(ret) #rtt.split(["/"]) rtt=rtts[0].split('/') #Return a list of the words in the string rtt_min=rtt[0] rtt_avg=rtt[1] rtt_max=rtt[2] print "%s\t\t%s\t\t%s\t\t%s\t\t%s"%(ip,packet_loss,rtt_min,rtt_max,rtt_avg) if __name__ == "__main__": if not os.path.exists("hosts.txt") : print "\033[31mhosts.txt文件不存在,请重试\033[0m" #"\033[31m字符串\033[0m"设置颜色字体 sys.exit(1) now=datetime.datetime.now() file=open('hosts.txt','r') pool=multiprocessing.Pool(processes=4) #Returns a process pool object result=[] print "########%s###########"%now print "IPADDRSS\t\t\tLOSS\t\tMIN\t\tMAX\t\tAVG" for i in file.readlines(): if len(i)==1 or i.startswith("#"): continue result.append(pool.apply_async(pinger,(i.strip(),))) #A variant of the apply() method which returns a result object. pool.close() pool.join()
试试其它关键字
同语言下
.
比较两个图片的相似度
.
过urllib2获取带有中文参数的url内容
.
不下载获取远程图片的宽度和高度及文件大小
.
通过qrcode库生成二维码
.
通过httplib发送GET和POST请求
.
Django下解决小文件下载
.
遍历windows的所有窗口并输出窗口标题
.
根据窗口标题调用窗口
.
python 抓取搜狗指定公众号
.
pandas读取指定列
可能有用的
.
比较两个图片的相似度
.
过urllib2获取带有中文参数的url内容
.
不下载获取远程图片的宽度和高度及文件大小
.
通过qrcode库生成二维码
.
通过httplib发送GET和POST请求
.
Django下解决小文件下载
.
遍历windows的所有窗口并输出窗口标题
.
根据窗口标题调用窗口
.
python 抓取搜狗指定公众号
.
pandas读取指定列
玉洁
贡献的其它代码
(
6
)
.
财付通 第三方支付 即时到帐支付接口
.
用“:::”叠加创建新列表
.
编号后六位处理
.
多种风格的窗口
.
树的优化算法
.
实现服务器ping
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3