我需要找出我的操作系统的当前互联网速度以在我的程序中使用,有几个模块可以通过像 speedtest-cli 和 pyspeed 这样的垃圾下载来计算最大互联网连接速度,但我找不到任何方法或模块来计算当前的互联网连接速度
import speedtest
s = speedtest.Speedtest()
从这里您可以使用:
print('Download speed is:', s.download())
输出以每秒位数为单位,因此显然要除以 1 000 000 才能转换为 Mbps
在我当前的版本中,Python 3.9 写道“AttributeError:模块‘speedtest’没有属性‘Speedtest’”