我正在用python for windows编写一个应用程序,我想知道我机器中网络接口的速度,我使用下面的代码来获取所使用的路由表。
def cmd(c):
"""
Execute commands in the command line
"""
return os.popen(c).read().rstrip("\n")
#list of IPV4 network routs
table = cmd("route print -4").split("\n")
然后我将table
作为字符串处理,将其剪切成行,并为每个接口获取(ip, subnet, gateway, metric)
元组的列表。
有没有办法计算使用界面连接到互联网的速度?或获取此类信息的命令?
答案 0 :(得分:0)
我记录了通过每个界面的流量,并制作了一个计时器来计算每个界面的速度。