python - 如何使用popen管道输出?

发布于 2024-10-08 22:49:28 字数 299 浏览 5 评论 0原文

我想使用 popen 对我的文件进行管道输出,我该怎么做?

test.py

while True:
  print"hello"

a.py

import os  
os.popen('python test.py')

我想使用os.popen管道输出。 我怎样才能做同样的事情?

I want to pipe output of my file using popen, how can I do that?

test.py:

while True:
  print"hello"

a.py :

import os  
os.popen('python test.py')

I want to pipe the output using os.popen.
how can i do the same?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

不甘平庸 2024-10-15 22:49:28

首先,os.popen() 已被弃用,请使用 subprocess 模块代替。

你可以这样使用它:

from subprocess import Popen, PIPE

output = Popen(['command-to-run', 'some-argument'], stdout=PIPE)
print output.stdout.read()

First of all, os.popen() is deprecated, use the subprocess module instead.

You can use it like this:

from subprocess import Popen, PIPE

output = Popen(['command-to-run', 'some-argument'], stdout=PIPE)
print output.stdout.read()
邮友 2024-10-15 22:49:28

使用 subprocess 模块,下面是一个示例:

from subprocess import Popen, PIPE

proc = Popen(["python","test.py"], stdout=PIPE)
output = proc.communicate()[0]

Use the subprocess module, here is an example:

from subprocess import Popen, PIPE

proc = Popen(["python","test.py"], stdout=PIPE)
output = proc.communicate()[0]
浮云落日 2024-10-15 22:49:28

这将仅打印输出的第一行:

a.py:

import os
pipe = os.popen('python test.py')
a = pipe.readline()
print a

...这将打印所有内容

import os
pipe = os.popen('python test.py')
while True:
    a = pipe.readline()
    print a

(我将 test.py 更改为此,以便更容易查看发生了什么

#!/usr/bin/python
x = 0
while True:
    x = x + 1
    print "hello",x

:)

This will print just the first line of output:

a.py:

import os
pipe = os.popen('python test.py')
a = pipe.readline()
print a

...and this will print all of them

import os
pipe = os.popen('python test.py')
while True:
    a = pipe.readline()
    print a

(I changed test.py to this, to make it easier to see what's going on:

#!/usr/bin/python
x = 0
while True:
    x = x + 1
    print "hello",x

)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文