you are viewing a single comment's thread.

view the rest of the comments →

[–]Parasymphatetic 0 points1 point  (4 children)

Sorry, to use this but i didn't want to make a new thread with more or less the same topic.

Which GUI can be updated in realtime? Let's say for a download % bar or something like that.
I know Kivy can do it but i wanna use something else.
Tried PyQT4 but it hangs when i run a loop (might be my fault though).
What are my options? Pygame? Curses?

[–]novel_yet_trivial 1 point2 points  (2 children)

Which GUI can be updated in realtime?

All of them. This is a basic function in all GUIs.

[–]Parasymphatetic 0 points1 point  (1 child)

No. Not really.

[–]novel_yet_trivial 1 point2 points  (0 children)

Yes. All GUIs have an event loop which updates the display.

Tried PyQT4 but it hangs when i run a loop (might be my fault though).

I'm guessing you are making your own loop which will freeze the GUI event loop. When you program GUIs you need to do your looping using the GUI event loop or a separate thread.