Repository URL to install this package:
Version:
0.70.0.dev5602 ▾
|
import socket
def get_free_tcp_port():
sock = socket.socket()
sock.bind(("", 0))
return sock.getsockname()[1]
def get_local_ip():
try:
with socket.socket(socket.AF_INET, socket.SOCK_DGRAM) as s:
s.connect(("8.8.8.8", 80))
local_ip = s.getsockname()[0]
return local_ip
except Exception:
hostname = socket.gethostname()
return socket.gethostbyname(hostname)