Created
June 3, 2020 23:06
-
-
Save agutoli/2cafc590e67e01d13ff06394adfad38b to your computer and use it in GitHub Desktop.
demo-speedtest.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Python program to test | |
# internet speed | |
import speedtest | |
st = speedtest.Speedtest() | |
option = int(input('''What speed do you want to test: | |
1) Download Speed | |
2) Upload Speed | |
3) Ping | |
Your Choice: ''')) | |
if option == 1: | |
print(st.download()) | |
elif option == 2: | |
print(st.upload()) | |
elif option == 3: | |
servernames =[] | |
st.get_servers(servernames) | |
print(st.results.ping) | |
else: | |
print("Please enter the correct choice !") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment