dual_ursim_control/signalMaster.py
Kovács Levente 9b85e3a633
All checks were successful
continuous-integration/drone/push Build is passing
Threading event wait instead of CPU burning wait
XMLRPC client scripts added
2021-04-04 20:05:19 +02:00

9 lines
186 B
Python

import xmlrpc.client
if __name__ == '__main__':
IP = '127.0.0.1'
PORT = '8888'
s = xmlrpc.client.ServerProxy("http://{0}:{1}".format(IP, PORT))
print(s.signalMaster())