Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: 9a448855b51b264d678e3ba3c168034c221806e2 authored by Ɓukasz Langa on 25 March 2019, 19:36:40 UTC
v3.8.0a3
Tip revision: 9a44885
xmlrpc.rst
:mod:`xmlrpc` --- XMLRPC server and client modules
==================================================

XML-RPC is a Remote Procedure Call method that uses XML passed via HTTP as a
transport.  With it, a client can call methods with parameters on a remote
server (the server is named by a URI) and get back structured data.

``xmlrpc`` is a package that collects server and client modules implementing
XML-RPC.  The modules are:

* :mod:`xmlrpc.client`
* :mod:`xmlrpc.server`
back to top