我正在尝试在 python 中创建一个类似 spigot 的界面。到目前为止,这是我想出的:
from blessed import Terminal
import time
print("pre-init")
term = Terminal()
print("post-init")
line = term.get_location(timeout=5)[0]
print(term.move_xy(0, term.height - 1), end="")
while True:
time.sleep(0.2)
with term.location(0, line):
print("DATA TIIIIIME")
line+=1
当文本到达屏幕底部时,如何将提示保持在屏幕底部而不被覆盖?我希望它像普通控制台输出一样向上滚动,而不是覆盖其他数据