mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-08 20:20:44 +00:00
14 lines
283 B
Python
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})
|