diff --git a/slic/core/sensor/remoteplot.py b/slic/core/sensor/remoteplot.py new file mode 100644 index 00000000..72e46d1b --- /dev/null +++ b/slic/core/sensor/remoteplot.py @@ -0,0 +1,11 @@ +import xmlrpc.client as xrc + + +class RemotePlot(xrc.ServerProxy): + + def __init__(self, host, port, *args, **kwargs): + addr = f"http://{host}:{port}/" + super().__init__(addr, *args, **kwargs) + + +