Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可以使用 rpyc 将远程 stdio 重定向到本地 stdio,但是是否可以使用自定义流来做到这一点,并对它做出反应?
最后,我想将 rpyc stdio 和串行端口流重定向到同一个流类并用同一个类处理它。
所以有人有一个例子或提示如何开始?
对于有类似问题的人:您可以使用自己的类或io.StringIO.
io.StringIO
它必须只实现 write() ,一个可以做任何事情的地方。这也适用于 rpyc 连接
rpyc_conn.modules.sys.stdout = io.StringIO()
作品。