Example #1
0
#!/usr/local/bin/python
from ZSI.client import Binding
fp = open('debug.out', 'a')
b = Binding(url='http://localhost:7000/simple-test', tracefile=fp)
fp.close()
a = b.average(range(1,11))
assert a == 5
print b.hello()