Internet Speed test program using python
First ,you need to import the module
pip install speedtest-cli
Python Code :
from speedtest import Speedtest
st=Speedtest()
print("Your Connection's Download speed is : ",st.download())
print("Your Connection's Upload speed is : ",st.upload())
OUTPUT :
Comments
Post a Comment