|
If speed is that important, you should be developing it in C, rather than Python. I suspect that the bottleneck is going to be your Python code, rather than an external GUI library written in C or C++.
Perhaps the most pertinent questions are: what OS are you using, and what license are you developing under? GTK is rather clunky under Windows and OSX, and Qt is only available for free under the GPL - so you either need to pay for a commercial license, or release your application as open source.
Personally, I prefer Qt, but if you want to develop applications for Windows without necessarily releasing the source code, and you don't want to stump up for the Qt license fee, then your best bet is wxWidgets.
|