OutGaugeInterpreter/OutGaugeInterpreter.py

11 lines
No EOL
226 B
Python

import socket
UDP_IP = "127.0.0.1"
UDP_PORT = 4444
sock = socket.socket(socket.AF_INET,socket.SOCK_DGRAM)
sock.bind((UDP_IP,UDP_PORT))
while True:
data, addr = sock.recvfrom(1024)
print("received mesage: %s" % data)