Answers for "use ip to check if computer is on python"

10

get IP address python

import socket    
hostname = socket.gethostname()    
IPAddr = socket.gethostbyname(hostname)    
print("Your Computer Name is:" + hostname)    
print("Your Computer IP Address is:" + IPAddr) 
#How to get the IP address of a client using socket
Posted by: Guest on April-02-2020
0

python check if ip is up or down

import nmap, socket
ip_addr = input('Enter ip or url to check if it is up or down: ')
scanner = nmap.PortScanner()
host = socket.gethostbyname(ip_addr)
scanner.scan(host, '1', '-v')
print("IP Status: ", scanner[host].state())
Posted by: Guest on February-22-2020

Code answers related to "use ip to check if computer is on python"

Python Answers by Framework

Browse Popular Code Answers by Language