mynode/rootfs/standard/usr/bin/get_local_ip.py

9 lines
151 B
Python
Raw Normal View History

#!/usr/bin/python3
import socket
s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
s.connect(("8.8.8.8", 80))
print(s.getsockname()[0])
s.close()