加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 编程开发 > Python > 正文

有没有办法从当前正在执行的python程序逐行输出管道?

发布时间:2020-12-16 23:44:56 所属栏目:Python 来源:网络整理
导读:将 python脚本的打印输出传递给像grep这样的命令时,脚本的输出似乎只能在完成整个脚本后通过管道连接到后续命令. 例如,在脚本test_grep.py中,如下所示: #!/usr/bin/env pythonfrom time import sleepprint "message1"sleep(5)print "message2"sleep(5)print
将 python脚本的打印输出传递给像grep这样的命令时,脚本的输出似乎只能在完成整个脚本后通过管道连接到后续命令.

例如,在脚本test_grep.py中,如下所示:

#!/usr/bin/env python
from time import sleep

print "message1"
sleep(5)
print "message2"
sleep(5)
print "message3"

用./test_grep.py |调用时grep消息,10秒内不会出现任何内容,此时将显示所有三行.

将其与脚本test_grep.sh进行比较:

#!/usr/bin/env bash
echo "message1"
sleep 5 
echo "message2"
sleep 5
echo "message3"

./test_grep.sh | grep消息将立即输出message1,然后由message2和message3以5秒的间隔输出.

我希望这是因为只有python解释器完成执行后才能获得下一个命令的输出.有没有办法改变这种行为?

解决方法

你能行的:

>通过刷新python中的每个打印件
>通过将stdout设置为无缓冲
>通过将stdout设置为行缓冲

你甚至可以调用python -u来禁用缓冲.

我会选择行缓冲选项,因为它看起来最自然.

open(file,mode='r',buffering=-1 ....)

buffering is an optional integer used to set the buffering policy.
Pass 0 to switch buffering off (only allowed in binary mode),1 to
select line buffering
(only usable in text mode),and an integer > 1
to indicate the size of a fixed-size chunk buffer.

当你没有指定缓冲(典型的“打开”)时,如果它检测到输出直接执行TTY,即屏幕控制台,它将使用行缓冲.如果管道输出或将其重定向到文件,它将切换回大(4K / 8K)缓冲区.

How do you “set stdout to be line-buffered”?

您可以通过sys.stdout = os.fdopen(sys.stdout.fileno(),’w’,1)重新打开stdout.

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读