Pyton ile ip adresi Bulma
Pyton ile ip adresi bulmak için kullanılabilecek bir yöntem. ilk olarak python kütüphanelerinden soket ve os kütüphanelerini import ediyoruz.
import socket import os
daha sonra aşşağıdaki kod ile ip adresimizi buluyoruz.
gw = os.popen("ip -4 route show default").read().split() s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) s.connect((gw[2], 0)) ipaddr = s.getsockname()[0] gateway = gw[2] host = socket.gethostname() print ("IP:", ipaddr, " GW:", gateway, " Host:", host)