Ejemplo 1: cómo hacer ping a un sitio web en Python
from os import system
print('1. Ping Google')
print('2. Ping Yahoo')
print('3. Ping custom URL')
while True:
key = int(input('Input your choice: '))
if key == 1:
system("ping www.google.com")
elif key == 2:
system("ping www.yahoo.com")
elif key == 3:
url = input('Enter URL: ')
system("ping " + url)
else:
print("Invalid Option!")
Ejemplo 2: cómo obtener ping desde la computadora en PYTHON
st = Speedtest()
print("Download:=>", st.download())
print("upload:=>", st.upload())
st.get_servers([])
print("Ping :=>", st.results.ping)
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)