如何将值传递给python中的运行进程

时间:2012-06-14 01:14:11

标签: python subprocess threadpool

我想将一些值传递给正在运行的进程,我该怎么做?

比方说,我有一个worker.py,它有这个代码。

import os
import sys

def my_test():
    print " I am starting now"
    a = raw_input("Do you want to start ? ")[0].lower()
    if a == "y":
        print "Yes I am starting now"
my_test()

此文件是可执行文件。我在该文件中有另一个python文件,我正在使用命令来启动我的worker.py。

status, message = commands.getstatusoutput ("/tmp/worker.py")

但由于raw_input,命令无法进入下一级。

无论如何我可以通过" y"通过命令或子进程工作?。

PS:我正在通过pyqt gui运行此命令。

提前致谢。

更新:

我终于找到了它,这是我的解决方案,是的,它使用了pexpect。

完全解决我的问题。我希望将来可以帮助其他人:)

#!/usr/bin/python

import sys
import pexpect
import re
from PyQt4 import QtGui, QtCore


class Example(QtGui.QWidget):

    def __init__(self):
        super(Example, self).__init__()

        self.initUI()

    def initUI(self):

        self.setGeometry(300, 300, 250, 150)
        self.setWindowTitle('Message box')
        qbtn = QtGui.QPushButton('Quit', self)
        qbtn.clicked.connect(self.spawnJob)
        self.qtxte = QtGui.QPlainTextEdit(self)
        qbtn.resize(qbtn.sizeHint())
        qbtn.move(260, 150)
        self.setGeometry(300, 300, 340, 200)
        self.setWindowTitle('Quit button')
        self.show()

    def spawnJob(self):
        self.child = pexpect.spawn ('/usr/local/bin/python /tmp/worker.py')
        a = self.child.expect ('Do you')
        if str(self.child.after) == 'Do you':
            self.test_one()

       before_msg = self.child.before
           self.qtxte.appendPlainText(before_msg)

       for ln in self.child.readlines():
           self.qtxte.appendPlainText(ln.rstrip())

    def test_one(self):

        reply = QtGui.QMessageBox.question(self, 'Message',
            "Are you sure to quit?", QtGui.QMessageBox.Yes |
            QtGui.QMessageBox.No, QtGui.QMessageBox.No)

        if reply == QtGui.QMessageBox.Yes:
            self.child.sendline ('y')
        else:
            self.child.kill(0)

def main():

    app = QtGui.QApplication(sys.argv)
    ex = Example()
    sys.exit(app.exec_())


if __name__ == '__main__':
    main()

1 个答案:

答案 0 :(得分:1)

popen怎么样?您可以使用它将事物传递给stdin上的进程。

或者,您可以尝试"yes | /tmp/worker.py"之类的命令。 yes只是将一堆'y'转储到它的标准输出上,然后由worker.py接收。

更简单,使用"echo y | /tmp/worker.py"作为命令。我刚尝试过,它对我来说很好。