An open API service indexing awesome lists of open source software.

https://github.com/gisce/supervisorc

A high level api for XML-RPC supervisor server
https://github.com/gisce/supervisorc

hacktoberfest library python supervisor xml-rpc-client

Last synced: 3 months ago
JSON representation

A high level api for XML-RPC supervisor server

Awesome Lists containing this project

README

        

Supervisor client
=================

This is a high level library to access to XML-RPC API of a Supervisor
instance.

.. code-block:: python

from supervisorc import Supervisor

supervisor = Supervisor('http://localhost:9001/RPC2')
supervisor.version
>>> '3.3.3'

for process in supervisor.processes:
print process.pid, process.name, process.statename