i get the same problem what your are facing. but I get the solution with help of my own idea, And don't worry it is simple to use.if you familiar to linux you should heard the ifconfig
command which return the informations about the network interfaces, and also you should understand about grep
command which filter the lines which consist specified wordsnow just open the terminal and type
ifconfig | grep 255.255.255.0
and hit enter
now you will get wlan inet address line alone like below
inet 192.168.43.248 netmask 255.255.255.0 broadcast 192.168.43.255
in your terminalin your python script just insert
#!/usr/bin/env pythonimport subprocesscmd = "ifconfig | grep 255.255.255.0"inet = subprocess.check_output(cmd, shell = True)inet = wlan.decode("utf-8")inet = wlan.split(" ")inet_addr = inet[inet.index("inet")+1]print(inet_addr)
this script return your local ip address, this script works for me and I hope this will work for your linux machineall the best