我正在用python为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)
为每个接口获取一个元组列表。
有没有办法使用接口计算连接到互联网的速度?或获取此类信息的命令?