Threading event wait instead of CPU burning wait
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
XMLRPC client scripts added
This commit is contained in:
8
signalSlave.py
Normal file
8
signalSlave.py
Normal file
@@ -0,0 +1,8 @@
|
||||
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())
|
||||
Reference in New Issue
Block a user