Answers for "python http server get ip address"

6

python get public ip address

from requests import get

ip = get('https://api.ipify.org').text
print(f'My public IP address is: {ip}')
Posted by: Guest on March-09-2021
1

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
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

Python Answers by Framework

Browse Popular Code Answers by Language