How to Check Our Internet Speed ?

Опубликовано: 17 Март 2026
на канале: Play With Coding
143
26

Steps to follow to check internet speed using Command Prompt:-
1) Install library ( pip install speedtest-cli)
2) Run the command ( speedtest-cli or speedtest-cli --share )

Steps to follow to check internet speed using Python programming:-
1) Open a python console
2)Install the library ( pip install speedtest-cli)
3) import library
4) Use object to find the upload speed and download speed

python code-

import speedtest
test=speedtest.Speedtest()
""""
download=test.download()
upload=test.upload()
print(f"Download Speed : {download}\n Upload Speed : {upload}") """
print("Download Speed",test.download())
print("Upload Speed",test.upload())