[ Web Proxy ]
URL:
Viewing: https://docs.python.org/2.2/lib/xmlrpc-client-example.html [Back]  [Original]

11.20.8 Example of Client Usage

 
11.20.8 Example of Client Usage

# simple test program (from the XML-RPC specification)

# server = ServerProxy("http://localhost:8000") # local server
server = ServerProxy("http://betty.userland.com")

print server

try:
    print server.examples.getStateName(41)
except Error, v:
    print "ERROR", v
See About this document... for information on suggesting changes.
Web Proxy Viewer  |  New URL  |  Original Page