在python curses的新行上输出

时间:2016-08-25 10:07:20

标签: python curses python-curses

我在python中使用curses模块通过读取文件实时显示输出。 字符串消息使用addstr()函数输出到控制台 但无论我需要什么,我都无法打印到换行符。

示例代码:

import json
import curses
w=curses.initscr()

try:
    while True:
        with open('/tmp/install-report.json') as json_data:
            beta = json.load(json_data)
            w.erase()
            w.addstr("\nStatus Report for Install process\n=========\n\n")
            for a1, b1 in beta.iteritems():
                w.addstr("{0} : {1}\n".format(a1, b1))
            w.refresh()
finally:
    curses.endwin()

上面并没有真正将字符串输出到新行(注意每个迭代中的\ n in addstr())。相反,如果我调整终端窗口的大小,脚本将失败并显示错误。

w.addstr("{0} ==> {1}\n".format(a1, b1))
_curses.error: addstr() returned ERR

1 个答案:

答案 0 :(得分:2)

没有足够的计划提供一般建议:

  • 如果您的脚本未启用滚动功能,则在打印到屏幕末尾时会出现错误(请参阅window.scroll)。
  • 如果您调整终端窗口的大小,则必须阅读键盘以处理任何KEY_RESIZE(并忽略错误)。

关于扩展的问题,这些功能将使用如下:

import json
import curses
w=curses.initscr()
w.scrollok(1) # enable scrolling
w.timeout(1)  # make 1-millisecond timeouts on `getch`

try:
    while True:
        with open('/tmp/install-report.json') as json_data:
            beta = json.load(json_data)
            w.erase()
            w.addstr("\nStatus Report for Install process\n=========\n\n")
            for a1, b1 in beta.iteritems():
                w.addstr("{0} : {1}\n".format(a1, b1))
            ignore = w.getch()  # wait at most 1msec, then ignore it
finally:
    curses.endwin()