How to read the first byte of a subprocess#39;s stdout and then discard the rest in Python?(如何读取子进程标准输出的第一个字节,然后在 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.
最好的方法是什么?
澄清:我希望子进程继续与我的程序一起运行,我不想等待它终止或类似的事情.理想情况下,有一些简单的方法可以做到这一点,而无需使用 threading、forking 或 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+,你可以为 stdout 使用 DEVNULL 特殊值和stderr 丢弃子进程输出.
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)
但是这并没有让您有机会读取标准输出的第一个字节.
However this doesn't give you the opportunity to read the first byte of stdout.
这篇关于如何读取子进程标准输出的第一个字节,然后在 Python 中丢弃其余字节?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何读取子进程标准输出的第一个字节,然后在 Python 中丢弃其余字节?
基础教程推荐
- pyserial - 可以从线程 a 写入串行端口,是否阻塞从线程 b 读取? 2022-01-01
- 尝试制作WhatsApp机器人 2022-01-01
- 用 Python 编写 Fortran 无格式文件 2022-01-01
- 在 Celery 工作人员中捕获 Heroku SIGTERM 以优雅地关 2022-01-01
- 由Python将MP3转换为MIDI(类型错误:无法加载插件:mtg-Melodia:Melodia) 2022-01-01
- 将 x 轴刻度更改为自定义字符串 2022-01-01
- 使用生成器和迭代器时 Python 多循环失败 2022-01-01
- Discord.py 缺少必需的参数 2022-01-01
- 与常规 dict 相比,Python manager.dict() 非常慢 2022-01-01
- numpy float:比算术运算中内置的慢 10 倍? 2022-01-01
