pip install speedtest
`
main.py
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
# 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 !") |