Te damos el hallazgo a esta duda, o por lo menos eso esperamos. Si tienes inquietudes dínoslo y sin dudar
Ejemplo: hacer ping al estado del servidor en python
import platform # For getting the operating system nameimport subprocess # For executing a shell commanddefping(host):"""
Returns True if host (str) responds to a ping request.
Remember that a host may not respond to a ping (ICMP) request even if the host name is valid.
"""# Option for the number of packets as a function of
param ='-n'if platform.system().lower()=='windows'else'-c'# Building the command. Ex: "ping -c 1 google.com"
command =['ping', param,'1', host]return subprocess.call(command)==0
Reseñas y valoraciones
Agradecemos que quieras corroborar nuestra publicación mostrando un comentario y puntuándolo te damos las gracias.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)