OSCAR-code/3rdparty/qtxmlrpc/xmlrpctest/client.py
Mark Watkins 392b0b5111 Separated QuaZip and QExtSerialPort, Oximetry work
Using official source which has been placed in 3rdparty folder
Oximetry button temporarily autostarts import.. Still a Work in progress.
2013-09-16 14:30:38 +10:00

14 lines
283 B
Python

#!/usr/bin/python
from xmlrpclib import ServerProxy
import datetime
s = ServerProxy('http://localhost:8080')
print s.testFunc('abc')
print s.testFunc(1)
print s.testFunc(True)
print s.testFunc(0.5)
print s.testFunc(datetime.datetime.now())
print s.testFunc({'a':1, 'b':2, 'c':3})