Kovács Levente
9b85e3a633
All checks were successful
continuous-integration/drone/push Build is passing
XMLRPC client scripts added
9 lines
185 B
Python
9 lines
185 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.signalSlave())
|