Answers for "python get domain ip address"

1

how to find ip address of website using python

import socket #module for gethostbyname
website = 'www.google.com'# you can put any website
ip = socket.gethostbyname(website)
print(ip)


'Output'
'142.250.182.36'#ip of google.com
Posted by: Guest on May-04-2021
2

python get ip from hostname

## importing socket module
import socket
## getting the hostname by socket.gethostname() method
hostname = socket.gethostname()
## getting the IP address using socket.gethostbyname() method
ip_address = socket.gethostbyname(hostname)
## printing the hostname and ip_address
print(f"Hostname: {hostname}")
print(f"IP Address: {ip_address}")
Posted by: Guest on January-23-2021

Python Answers by Framework

Browse Popular Code Answers by Language