Skip to content

Instantly share code, notes, and snippets.

@studiawan
Created December 30, 2013 04:55
Show Gist options
  • Save studiawan/8177981 to your computer and use it in GitHub Desktop.
Save studiawan/8177981 to your computer and use it in GitHub Desktop.
XML RPC client for boolean server
# http://docs.python.org/2/library/xmlrpclib.html
import xmlrpclib
proxy = xmlrpclib.ServerProxy("http://localhost:8000/")
print "3 is even: %s" % str(proxy.is_even(3))
print "100 is even: %s" % str(proxy.is_even(100))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment