Answers for "how to find a website ip address"

0

how to find a website ip address

import socket
# create an INET, STREAMing socket
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
print("What website's ip would you like to find?")
site = input()

print((socket.gethostbyname(site), 80))
Posted by: Guest on January-17-2022

Code answers related to "how to find a website ip address"

Python Answers by Framework

Browse Popular Code Answers by Language