added grumpy RPC client RemotePlot

This commit is contained in:
2023-01-19 16:51:19 +01:00
parent 7c63dd69d4
commit cf88ef64ad
+11
View File
@@ -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)