OSCAR-code/thirdparty/qtxmlrpc/xmlrpctest/client.py
2019-02-11 17:37:29 -05: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})