当前流程和其他流程之间的管道

时间:2010-08-17 14:02:53

标签: python multiprocessing

我想在一个进程(当前)和系统中存在的其他进程之间在Python中创建管道或队列。我该怎么做?我知道当前和其他进程ID。 我在Windows 32bit上工作。

1 个答案:

答案 0 :(得分:3)

喜欢这个。

python one_process.py | python the_other_process.py

让操作系统为您完成工作。

one_process.py,您写信至sys.stdout

the_other_process.py中,您可以阅读sys.stdin

就是这样。