Python SpeedTest library Error
I have a script in python that does a speedtest and displays the result. But I don't understand why I have an error that persists.
error :
raise SpeedtestBestServerFailure('Unable to connect to servers to ' speedtest.SpeedtestBestServerFailure: Unable to connect to servers to test latency.
script :
import speedtest
st = speedtest.Speedtest()
download_speed = st.download()
print(download_speed)
I'm well connected, I load web pages correctly and can even do speedtest online.
Please help me