Hello there, First : thanks for the great job on rpyc! Here is a sketch of my simple rpyc.service setup:
def print_dict(d):
for k,v in d.items():
print(k,v)
def print_dict2(d):
myService.py:
class myService(rpyc.service)
...
def exposed_runservice(self,dict):
#print_dict(dict) <--- This would fail; it looks like dict is not
available when the execution gets there?
..
myClient.py
...
myDict = load_dict(filename)
conn = rpyc.connect(host,service_port)
conn.root.runservice(mydict)
