Sign in or register Home

Snippet #104: How to get the latest version from this site


Author: limodou Date: 2008-04-22 13:41:19


from xmlrpclib import ServerProxy, Error
server = ServerProxy("http://ulipad.appspot.com/XMLRPC")
try:
    print server.version()
except Error, e:
    print "ERROR", e

Category: site
Tag:

Comment: