Check Internet Speed Using Python

0

Check Internet Speed Using Python

  • In this topic we learn how to check your internet speed using python.

Need to Install


 

Source Code:

#Follow - @Programmerfect

import speedtest
test = speedtest.Speedtest()
download = test.download()
upload = test.upload()

print(f"Download Speed : {download}\n Upload Speed : {upload}")



Post a Comment

0Comments
Post a Comment (0)