Skip to content

Instantly share code, notes, and snippets.

@agutoli
Created June 3, 2020 23:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save agutoli/2cafc590e67e01d13ff06394adfad38b to your computer and use it in GitHub Desktop.
Save agutoli/2cafc590e67e01d13ff06394adfad38b to your computer and use it in GitHub Desktop.
demo-speedtest.py
# 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