gpt4 book ai didi

python - Urwid ProgessBar 无法正确更新

转载 作者:行者123 更新时间:2023-11-30 23:26:13 28 4
gpt4 key购买 nike

我正在使用 urwid 库,到目前为止它非常棒。但我无法让进度条工作。我写了一个简单的测试程序,如下所示:

import os
import urwid

# a function that takes some times to complete
def dosomething(steps, bar):
bar.done = steps
for i in range(steps + 1):
bar.set_completion(i)
os.system('sleep 0.2')

# make a button to start
task_btn = urwid.Button(u'Task')
# progressbar object
pbar = urwid.ProgressBar('pg normal', 'pg complete')

# function called when the task button is clicked
def on_task_clicked(button):
dosomething(10, pbar)

# setup signal handler for the button
urwid.connect_signal(task_btn, 'click', on_task_clicked)

"""
create the interface and the mainloop.
filler objects are our friend to prevent unpacking errors :D
"""

loop = urwid.MainLoop(urwid.Pile([urwid.Filler(task_btn), urwid.Filler(pbar)]))
loop.run()

如果我启动它,进度条应该是 0%。然后我按下按钮,几秒钟后进度条显示 100%。但我错过了 0% 和 100% 之间的步骤。他们只是不会出现。

此外,对渲染函数的额外调用也不起作用。

我也尝试过这样的事情:

def on_task_clicked(button):
pbar.set_completion(pbar.current+1)

这工作得很好。看起来进度条对循环调用不满意。这看起来很奇怪?!有人有任何想法来解决这个问题吗?

提前致谢:)

PS:信息:乌尔维德 1.2.0在 python 2.6.6、2.7、3.3 上测试都一样

最佳答案

这可能是因为主循环的 draw_screen 方法没有被调用(它通常在循环进入空闲状态时自动调用)。

在 for 循环中添加 loop.draw_screen()

关于python - Urwid ProgessBar 无法正确更新,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22641529/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com