Answers for "python local ip address get"

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

how to get local ip in python

import socket
local_ip = socket.gethostbyname(socket.gethostname())
print(f"[+] Your Local IP is : {local_ip}")
Posted by: Guest on May-28-2021

Code answers related to "python local ip address get"

Python Answers by Framework

Browse Popular Code Answers by Language