如何用python计算当前的互联网连接速度?

问题描述 投票:0回答:2

我需要找出我的操作系统的当前互联网速度以在我的程序中使用,有几个模块可以通过像 speedtest-cli 和 pyspeed 这样的垃圾下载来计算最大互联网连接速度,但我找不到任何方法或模块来计算当前的互联网连接速度

python python-3.x monitoring python-module
2个回答
1
投票
import speedtest

s = speedtest.Speedtest()

从这里您可以使用:

print('Download speed is:', s.download())

输出以每秒位数为单位,因此显然要除以 1 000 000 才能转换为 Mbps


0
投票

在我当前的版本中,Python 3.9 写道“AttributeError:模块‘speedtest’没有属性‘Speedtest’”

© www.soinside.com 2019 - 2024. All rights reserved.