Answers for "python get hostname from url"

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
2

python get domain from url

from urllib.parse import urlparse
domain = urlparse('https://supermavster.com').netloc
Posted by: Guest on November-30-2020

Python Answers by Framework

Browse Popular Code Answers by Language