Saturday, September 21, 2024
Google search engine
HomeLanguagesPython program to find IP Address

Python program to find IP Address

An IP(Internet Protocol) address is an identifier assigned to each computer and other device(e.g., router, mobile, etc.) connected to a TCP/IP network that is used to locate and identify the node in communication with other nodes on the network. IP addresses are usually written and displayed in human-readable notation such as 192.168.1.35 in IPv4(32-bit IP address).

Get IP address of your computer in Python

Here we are trying to fetch the IP address of our computer in Python using various methods like,

Using the socket library to find IP Address

Step 1: Import socket library

Python3




IP = socket.gethostbyname(hostname)


Step 2: Then print the value of the IP into the print() function your IP address.

Python3




print("Your Computer IP Address is:" + IPAddr)


Below is the complete Implementation

Here we have to import the socket first then we get the hostname by using the gethostname() function and then we fetch the IP address using the hostname that we fetched and the we simply print it.

Python




# Python Program to Get IP Address
import socket
hostname = socket.gethostname()
IPAddr = socket.gethostbyname(hostname)
 
print("Your Computer Name is:" + hostname)
print("Your Computer IP Address is:" + IPAddr)


Output:

Your Computer Name is:pppContainer
Your Computer IP Address is:10.98.162.168

Using the os module to find IP Address

Here we are using the os module to find the system configuration which contains the IPv4 address as well.

Python3




import os
print(os.system('ipconfig'))


Output:

 

Using the request module to find IP Address

Here we are using the request module of Python to fetch the IP address of the system.

Python3




from urllib.request import urlopen
import re as r
 
def getIP():
    d = str(urlopen('http://checkip.dyndns.com/')
            .read())
 
    return r.compile(r'Address: (\d+\.\d+\.\d+\.\d+)').
             search(d).group(1)
 
print(getIP())


Output:

103.251.142.122

Python program to find IP Address with request module

To find the IP address using the requests module in Python, you can make an HTTP request to a website that returns your IP address. Here’s an example program that demonstrates this approach:

Python3




import requests
 
def get_ip_address():
    url = 'https://api.ipify.org'
    response = requests.get(url)
    ip_address = response.text
    return ip_address
 
# Call the function to get the IP address
ip = get_ip_address()
print("IP Address:", ip)


Output:

IP Address: 49.249.159.198

Related Post : Java program to find IP address of your computer

RELATED ARTICLES

Most Popular

Recent Comments