multicall(*methods)
Instance Public methods
You can use this method to execute several methods on a XMLRPC server which support the multi-call extension.
s.multicall( ['michael.add', 3, 4], ['michael.sub', 4, 5] ) # => [7, -1]
You can use this method to execute several methods on a XMLRPC server which support the multi-call extension.
s.multicall( ['michael.add', 3, 4], ['michael.sub', 4, 5] ) # => [7, -1]
Please login to continue.