1

我正在玩 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:INFO:urwid 1.2.0 在 python 2.6.6、2.7、3.3 上测试都一样

4

1 回答 1

3

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

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

于 2015-03-26T22:59:49.903 回答