Import modules using RPYC

孤人 提交于 2019-12-06 07:53:46

You can add the following methods to the service:

import sys, importlib, rpyc
...

class MyService(rpyc.Service):
    ...
    def exposed_import_module(self, mod):
        return importlib.import_module(mod)
    def exposed_add_to_syspath(self, path):
        return sys.path.append(path)

and access it like this:

connections.root.add_to_syspath('path/to/import')
file = connections.root.import_module('file')
file.logger(session, 'path/to/log')
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!