Subscribe Us

Header Ads

How to Check internet speed using python | python projects |

Hey guys in this video i am gonna tell you how you can get the Downloading and upload speed using python.....


Source Code..

#required module-pip install speetest
import speedtest
#initializing st=speedtest.Speedtest()
#printing downloading speed in mb print(st.download*(10**-6),"M/s")
#printing uploading speed in mb print(st.upload*(10**-6),"M/s")

Post a Comment

0 Comments