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