The python xmlrpclib.ServerProxy module provides a way to communicate with remote XML-RPC servers using the client-side implementation of the XML-RPC protocol. It acts as a proxy, allowing the Python program to call methods on the remote server as if they were local functions. The ServerProxy handles the remote method calls and the serialization/deserialization of data between the client and the server. This module simplifies the process of making XML-RPC calls and enables Python programs to easily interact with XML-RPC servers over the network.
Python ServerProxy - 60 examples found. These are the top rated real world Python examples of xmlrpclib.ServerProxy extracted from open source projects. You can rate examples to help us improve the quality of examples.