Sophie

Sophie

distrib > Fedora > 13 > i386 > by-pkgid > a709ddb20745c7012e3d3a00b31ca2a7 > files > 181

python-ZSI-2.0-6.fc13.noarch.rpm

#!/usr/bin/env python

from ZSI import Binding


MESSAGE = "Hello from Python!"

def main():
    binding = Binding(url='http://localhost:8080/server.py')
    print ' Sending: %s' % MESSAGE
    response = binding.echo(MESSAGE)
    print 'Response: %s' % MESSAGE


if __name__ == '__main__':
    main()