我正在用Python创建一个程序来监听varios用户交互并记录它们。我有这些要求/限制:
我一直在阅读关于subprocess
但我似乎无法找到关于如何同时停止两者的任何内容。如果有人知道Erlang / Elixir,我需要相当于spawn_link
。
谢谢!
答案 0 :(得分:0)
要回答标题中的问题(来自Google的访问者):there are robust solutions on Linux, Windows using OS-specific APIs and less robust but more portable psutil
-based solutions。
修复您的具体问题(XY problem):使用守护程序线程而不是进程。
线程允许执行I / O而不阻止GUI code example(即使您选择的GUI不提供异步.I / O API,如tkinter's createfilehandler()
或{{3 }})。