Controllo della velocità wifi

Esempi di codice

108
0

test wifi

If you are reading this your wifi is working
4
0

ìnternet test di velocità

Speedtest by Ookla :)
3
0

speedtest

#pip3 install speedtest-cli
import speedtest

#function that gets the download speed in mega bytes per second
def get_final_speed():
    rawspeed = speedtest.Speedtest().download()
    roundedspeed = round(rawspeed)
    finalspeed = roundedspeed / 1e+6
    return finalspeed

#function that loops and calls on the above function
def looped_av(y):
    finalspeeds = 0
    for i in range(y):
        x = get_final_speed()
        print(f'{i+1}. {x}mb/s')
    return finalspeeds

#menu loop
while True:
    repeat = input('1, 2, 3 or press {ENTER} to quit\n>>>')
    if repeat == '1':
        #single iteration
        x = get_final_speed()
        print(f'done, your download speed is {x}mb/s')
    elif repeat == '2':
        #2 iterations and finds the average speed
        x = looped_av(2)
        print(f'done, your average download speed is {x}mb/s')
    elif repeat == '3':
        #finds out how accurate the user wants the average to be, pretty pointless i know
        times_through = int(input('how many times do you want the test to run?\n>>>'))
        #iterates and finds the average download speed
        x = looped_av(times_through)
        print(f'done, your average download speed is {x}mb/s')  
    else:
        #breaks from the loop
        break
2
0

speedtest

nice
1
0

test di velocità di Internet

 search "internet speed test"
1
0

controllo della velocità wifi

the wifi speed cheaker have fast server its not providing correct speed

In altre lingue

Questa pagina è in altre lingue

Русский
..................................................................................................................
English
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................