added grumpy RPC client RemotePlot
This commit is contained in:
@@ -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)
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user