如何使用 Twisted Python 运行 C 程序并获取程序的输出
我有一个使用 Twisted 框架编写的 Python 机器人,还有一个输出特定文本的 C 程序。我怎样才能让 Twisted 使用命令运行 C 程序,收集输出,然后将输出打印回给我?
I have a Python Bot written using Twisted framework and I have a C program that outputs certain text. How would I be able to run have Twisted run the C program using a command, collect the output, then print the output back to me?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最简单的方法是 getProcessOutput:
另请参阅 < a href="http://twistedmatrix.com/documents/current/core/howto/process.html" rel="nofollow">http://twistedmatrix.com/documents/current/core/howto/process.html以防您需要更复杂的东西。
The easiest way is getProcessOutput:
Also see http://twistedmatrix.com/documents/current/core/howto/process.html in case you need something more complex.