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?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
The easiest way is getProcessOutput:
Also see http://twistedmatrix.com/documents/current/core/howto/process.html in case you need something more complex. |
|||
|
|