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.
我正在使用 python 线程在串行端口上收集数据并将数据写入数据库。我现在需要做的是,不是将输出写入终端,而是将其写入任何客户端都可以连接和读取的套接字。
我有一个功能
def write_to_viewer(self, data): code to make data human readable print data
但我需要的不是打印,而是将其写入套接字服务器,以便在处理新数据时,客户端可以读取它。
感谢您的任何提示