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: 9 months ago
JSON representation
A high level api for XML-RPC supervisor server
- Host: GitHub
- URL: https://github.com/gisce/supervisorc
- Owner: gisce
- License: mit
- Created: 2018-01-21T15:03:06.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-01-21T15:46:08.000Z (over 8 years ago)
- Last Synced: 2025-09-19T22:49:34.223Z (10 months ago)
- Topics: hacktoberfest, library, python, supervisor, xml-rpc-client
- Language: Python
- Homepage:
- Size: 3.91 KB
- Stars: 2
- Watchers: 16
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
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