You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
469 B
24 lines
469 B
|
|
from twisted.internet import reactor
|
|
from twisted.web.xmlrpc import Proxy
|
|
|
|
|
|
def printValue(value):
|
|
print(repr(value))
|
|
reactor.stop()
|
|
|
|
|
|
def printError(error):
|
|
print("error", error)
|
|
reactor.stop()
|
|
|
|
|
|
def capitalize(value):
|
|
print(value)
|
|
|
|
|
|
proxy = Proxy(b"http://localhost:7080/xmlrpc")
|
|
# The callRemote method accepts a method name and an argument list.
|
|
proxy.callRemote("FD_API.reset", '2', '55555').addCallbacks(capitalize, printError)
|
|
reactor.run()
|