如何读取子进程标准输出的第一个字节,然后在 Python 中丢弃其余部分? [英] How to read the first byte of a subprocess's stdout and then discard the rest in Python?

查看:26
本文介绍了如何读取子进程标准输出的第一个字节,然后在 Python 中丢弃其余部分?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想读取子进程标准输出的第一个字节,以了解它已开始运行.之后我想丢弃所有进一步的输出,这样我就不必担心缓冲区了.

I'd like to read the first byte of a subprocess' stdout to know that it has started running. After that I'd like to discard all further output, so that I don't have to worry about the buffer.

最好的方法是什么?

澄清:我希望子进程继续与我的程序一起运行,我不想等待它终止或类似的事情.理想情况下,有一些简单的方法可以做到这一点,而无需求助于 threadingforking 或 multiprocessing.

Clarification: I'd like the subprocess to continue running alongside my program, I don't want to wait for it to terminate or anything like that. Ideally there would be some simple way to do this, without resorting to threading, forking or multiprocessing.

如果我忽略输出流,或 .close() 它,如果发送的数据超过其缓冲区所能容纳的数据量,则会导致错误.

If I ignore the output stream, or .close() it, it causes errors if it is sent more data than it can fit in its buffer.

推荐答案

如果您使用的是 Python 3.3+,您可以使用 DEVNULL 特殊值作为 stdoutstderr 丢弃子进程输出.

If you're using Python 3.3+, you can use the DEVNULL special value for stdout and stderr to discard subprocess output.

from subprocess import Popen, DEVNULL

process = Popen(["mycmd", "myarg"], stdout=DEVNULL, stderr=DEVNULL)

或者,如果您使用的是 Python 2.4+,则可以使用以下方法进行模拟:

Or if you're using Python 2.4+, you can simulate this with:

import os
from subprocess import Popen

DEVNULL = open(os.devnull, 'wb')
process = Popen(["mycmd", "myarg"], stdout=DEVNULL, stderr=DEVNULL)

然而,这不会让您有机会读取 stdout 的第一个字节.

However this doesn't give you the opportunity to read the first byte of stdout.

这篇关于如何读取子进程标准输出的第一个字节,然后在 Python 中丢弃其余部分?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆