{% extends "layouts/content-bootstrap.html" %} {% load i18n %} {% block title %} {{ block.super }} | {% trans "XML-RPC" %} {% endblock %} {% block breadcrumbs %} {{ block.super }}
LAVA Server offers API services as an XML-RPC server. You can interact with it using any XML-RPC client. For example, in python you can do this:
import xmlrpclib server = xmlrpclib.ServerProxy("{{ site_url }}{% url 'lava.api_handler' %}") print server.system.listMethods()
https://
scheme is preferred as some calls require authentication.