from SimpleXMLRPCServer import CGIXMLRPCRequestHandlerimport timeclass Stats: def getstats(self): return self.callstats def getruntime(self): return time.time() - self.starttime def failure(self): raise RuntimeError, "error"class Math(Stats): def __init__(self): self.callstats = {'pow': 0, 'hex': 0} self.starttime = time.time() def pow(self, x, y): self.callstats['pow'] += 1 return pow(x, y) def hex(self, x): self.callstats['hex'] += 1 return "%x" % xhandler = CGIXMLRPCRequestHandler()handler.register_instance(Math())handler.register_introspection_functions()handler.handle_request()
Name (required)
email (will not be published) (required)
Website